diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2013-03-15 08:18:13 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2013-03-15 08:18:13 +0000 |
commit | da939c25c66bb0add8faf47ce005b06b862fe828 (patch) | |
tree | d3b21db0cdfa2fd5dfec958ecf95f8f1b6da5944 /plugins/Watrack_MPD/src/commonheaders.h | |
parent | d1eea8fde5e87bd79317b923ae61b43b6f9081a4 (diff) |
plusification
git-svn-id: http://svn.miranda-ng.org/main/trunk@4039 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Watrack_MPD/src/commonheaders.h')
-rwxr-xr-x | plugins/Watrack_MPD/src/commonheaders.h | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/plugins/Watrack_MPD/src/commonheaders.h b/plugins/Watrack_MPD/src/commonheaders.h index 85eb73a335..c71f36b977 100755 --- a/plugins/Watrack_MPD/src/commonheaders.h +++ b/plugins/Watrack_MPD/src/commonheaders.h @@ -15,13 +15,16 @@ // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #ifndef COMMONHEADERS_H #define COMMONHEADERS_H + +#define _CRT_SECURE_NO_WARNINGS + #include <windows.h> #include <tchar.h> #include <malloc.h> #include <time.h> +#include <uxtheme.h> -#define MIRANDA_VER 0x0800 #include <newpluginapi.h> #include <m_netlib.h> //#include <m_clist.h> @@ -36,8 +39,18 @@ #include "resource.h" #include "constants.h" -#include "globals.h" #include "main.h" #include "m_music.h" #include "utilities.h" + +extern HINSTANCE hInst; +extern HANDLE ghNetlibUser; +extern BOOL bWatrackService; +extern TCHAR *gbHost, *gbPassword; +extern WORD gbPort; + +extern char *date(); +extern int WaMpdOptInit(WPARAM wParam,LPARAM lParam); +extern void RegisterPlayer(); + #endif |