diff src/include/main.h @ 1:7abb5d8b20ea v1.0

Initial commit: part 2 I added a config GUI, and actual stuff to the README. The GUI was 'made' in Visual Studio, but I trimmed down the resource file because it had weird VS2010 skid marks all over it.
author Paper <mrpapersonic@gmail.com>
date Sun, 07 Aug 2022 10:23:10 -0400
parents d91dfd53b8b4
children 42ac054c0231
line wrap: on
line diff
--- a/src/include/main.h	Sun Aug 07 07:26:27 2022 -0400
+++ b/src/include/main.h	Sun Aug 07 10:23:10 2022 -0400
@@ -9,7 +9,7 @@
     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(*conf)();              // 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) 
@@ -23,5 +23,7 @@
 
 void CALLBACK TimerProc(HWND, UINT, UINT_PTR, DWORD);
 int init();
+void conf();
 void quit();
+void update_rich_presence_details(void);
 #endif
\ No newline at end of file