Mercurial > wgsdk
diff src/include/main.h @ 0:d91dfd53b8b4
Initial commit
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Sun, 07 Aug 2022 07:26:27 -0400 |
parents | |
children | 7abb5d8b20ea |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/include/main.h Sun Aug 07 07:26:27 2022 -0400 @@ -0,0 +1,27 @@ +#ifndef __main_h +#define __main_h +#ifndef WIN32_LEAN_AND_MEAN +# define WIN32_LEAN_AND_MEAN +#endif +#include <windows.h> + +typedef struct { + int version; // version of the plugin structure + char *description; // name/title of the plugin + int(*init)(); // function which will be executed on init event + void(*config)(); // function which will be executed on config event + void(*quit)(); // function which will be executed on quit event + HWND hwndParent; // hwnd of the Winamp client main window (stored by Winamp when dll is loaded) + HINSTANCE hDllInstance; // hinstance of this plugin DLL. (stored by Winamp when dll is loaded) +} winamp_general_purpose_plugin; + +struct app_t { + struct IDiscordCore* core; + struct IDiscordUsers* users; + struct IDiscordActivityManager* activities; +}; + +void CALLBACK TimerProc(HWND, UINT, UINT_PTR, DWORD); +int init(); +void quit(); +#endif \ No newline at end of file