1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- ///////////////////////////////////////////////////////////
- // Hot keys initializer function
- ///////////////////////////////////////////////////////////
- void hotkeysInit();
- int hotkeysLoad(HOTKEY_DATA *hkds, DWORD num, int do_register, int verbose=1);
- void hotkeysSave(HOTKEY_DATA *hkds, DWORD num);
- void hotkeysClear();
- ///////////////////////////////////////////////////////////
- // Plugin function headers
- ///////////////////////////////////////////////////////////
- int pluginInit();
- void pluginConfig();
- void pluginQuit();
- ///////////////////////////////////////////////////////////
- // DLL Windows message handling procedure header
- ///////////////////////////////////////////////////////////
- LRESULT CALLBACK WndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam);
- ///////////////////////////////////////////////////////////
- // Globals
- ///////////////////////////////////////////////////////////
- extern winampGeneralPurposePlugin psPlugin;
- extern HOTKEY *g_hotkeys;
- extern DWORD g_dwHotkeys;
- extern wchar_t *g_iniFile;
- extern HOTKEY_DATA g_defhkds[];
- void writePrivateProfileInt(wchar_t *section, int val);
-
-
|