From 177c84716db384c8be095219c58d0a68f87101fe Mon Sep 17 00:00:00 2001 From: Vadim Dashevskiy Date: Mon, 23 Jul 2012 11:56:59 +0000 Subject: NotesAndReminders, Nudge, OpenFolder, PackUpdater: changed folder structure git-svn-id: http://svn.miranda-ng.org/main/trunk@1116 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/OpenFolder/openFolder.cpp | 127 -------------------------- plugins/OpenFolder/openFolder.h | 22 ----- plugins/OpenFolder/openFolder.vcxproj | 114 +++-------------------- plugins/OpenFolder/openFolder.vcxproj.filters | 13 +-- plugins/OpenFolder/res/resource.rc | 69 ++++++++++++++ plugins/OpenFolder/resource.h | 18 ---- plugins/OpenFolder/resource.rc | 69 -------------- plugins/OpenFolder/src/openFolder.cpp | 127 ++++++++++++++++++++++++++ plugins/OpenFolder/src/openFolder.h | 22 +++++ plugins/OpenFolder/src/resource.h | 18 ++++ 10 files changed, 253 insertions(+), 346 deletions(-) delete mode 100644 plugins/OpenFolder/openFolder.cpp delete mode 100644 plugins/OpenFolder/openFolder.h create mode 100644 plugins/OpenFolder/res/resource.rc delete mode 100644 plugins/OpenFolder/resource.h delete mode 100644 plugins/OpenFolder/resource.rc create mode 100644 plugins/OpenFolder/src/openFolder.cpp create mode 100644 plugins/OpenFolder/src/openFolder.h create mode 100644 plugins/OpenFolder/src/resource.h (limited to 'plugins/OpenFolder') diff --git a/plugins/OpenFolder/openFolder.cpp b/plugins/OpenFolder/openFolder.cpp deleted file mode 100644 index a39420ae73..0000000000 --- a/plugins/OpenFolder/openFolder.cpp +++ /dev/null @@ -1,127 +0,0 @@ -#include "openFolder.h" - -int hLangpack = 0; -HINSTANCE hInst; -HANDLE hServiceOpenFolder, hButtonTopToolbar, hIconOpenFolder; - -PLUGININFOEX pluginInfoEx = -{ - sizeof( PLUGININFOEX ), - "Open Miranda Folder", - OPENFOLDER_VERSION, - OPENFOLDER_DESCRIPTION, - "jarvis, Kreisquadratur", - "jarvis@jabber.cz, djui@kreisquadratur.de", - "© 2008 jarvis, © 2004 Kreisquadratur", - "http://nightly.miranda.im/", - UNICODE_AWARE, //not transient - MIID_OPENFOLDER // {10896143-7249-4b36-A408-6501A6B6035A} -}; - -BOOL WINAPI DllMain( HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved ) -{ - hInst = hinstDLL; - return TRUE; -} - -static INT_PTR MenuCommand_OpenFolder(WPARAM wParam, LPARAM lParam) -{ - TCHAR szMirandaPath[MAX_PATH]; - GetModuleFileName( GetModuleHandle(NULL), szMirandaPath, SIZEOF(szMirandaPath)); - TCHAR* p = _tcsrchr( szMirandaPath, '\\' ); - if ( p && p + 1 ) - *( p + 1 ) = 0; - - if ( GetAsyncKeyState( VK_CONTROL ) & 0x8000 ) - ShellExecute(0, _T("explore"), szMirandaPath, 0, 0, SW_SHOWNORMAL); - else - ShellExecute(0, _T("open"), szMirandaPath, 0, 0, SW_SHOWNORMAL); - - return 0; -} - -// toptoolbar (if plugin is installed) -static int ToptoolBarHook(WPARAM wParam, LPARAM lParam) -{ - TTBButton ttbb = { 0 }; - ttbb.cbSize = sizeof( ttbb ); - ttbb.hIconHandleUp = hIconOpenFolder; - ttbb.pszService = MS_OPENFOLDER_OPEN; - ttbb.dwFlags = TTBBF_VISIBLE | TTBBF_SHOWTOOLTIP; - ttbb.name = LPGEN("Open Folder"); - TopToolbar_AddButton(&ttbb); - return 0; -} - -static int ModulesLoaded(WPARAM wParam, LPARAM lParam) -{ - TCHAR szFile[MAX_PATH]; - GetModuleFileName( hInst, szFile, MAX_PATH ); - - char szSettingName[64]; - mir_snprintf(szSettingName, sizeof( szSettingName ), "%s_%s", OPENFOLDER_MODULE_NAME, "open"); - - // icolib (0.7+) - SKINICONDESC sid = { 0 }; - sid.cbSize = sizeof( SKINICONDESC ); - sid.ptszDefaultFile = szFile; - sid.flags = SIDF_PATH_TCHAR; - sid.cx = sid.cy = 16; - sid.pszSection = LPGEN("Open Folder"); - sid.pszName = szSettingName; - sid.pszDescription = LPGEN("Open Folder"); - sid.iDefaultIndex = -IDI_FOLDER; - hIconOpenFolder = Skin_AddIcon(&sid); - - // hotkeys service (0.8+) - HOTKEYDESC hotkey = { 0 }; - hotkey.cbSize = sizeof( hotkey ); - hotkey.pszName = LPGEN("Open Folder"); - hotkey.pszDescription = LPGEN("Open Folder"); - hotkey.pszSection = "Main"; - hotkey.pszService = MS_OPENFOLDER_OPEN; - hotkey.DefHotKey = MAKEWORD( 'O', HOTKEYF_SHIFT | HOTKEYF_ALT ); - Hotkey_Register(&hotkey); - - CLISTMENUITEM mi = { 0 }; - mi.cbSize = sizeof( mi ); - mi.position = 0x7FFFFFFF; - mi.flags = CMIF_ICONFROMICOLIB; - mi.icolibItem = hIconOpenFolder; - mi.pszName = LPGEN("Open Folder"); - mi.pszService = MS_OPENFOLDER_OPEN; - Menu_AddMainMenuItem(&mi); - return 0; -} - -HICON LoadIconExEx( const char* IcoLibName, int NonIcoLibIcon ) -{ - char szSettingName[64]; - mir_snprintf( szSettingName, sizeof( szSettingName ), "%s_%s", OPENFOLDER_MODULE_NAME, IcoLibName ); - return Skin_GetIcon(szSettingName); -} - -extern "C" __declspec( dllexport ) PLUGININFOEX* MirandaPluginInfoEx( DWORD mirandaVersion ) -{ - return &pluginInfoEx; -} - -///////////////////////////////////////////////////////////////////////////////////////// - -extern "C" int __declspec( dllexport ) Load() -{ - mir_getLP(&pluginInfoEx); - - hServiceOpenFolder = CreateServiceFunction(MS_OPENFOLDER_OPEN, MenuCommand_OpenFolder); - - HookEvent(ME_SYSTEM_MODULESLOADED, ModulesLoaded); - return 0; -} - -///////////////////////////////////////////////////////////////////////////////////////// - -extern "C" int __declspec( dllexport ) Unload() -{ - DestroyServiceFunction(hServiceOpenFolder); - return 0; -} diff --git a/plugins/OpenFolder/openFolder.h b/plugins/OpenFolder/openFolder.h deleted file mode 100644 index d7eb02dad8..0000000000 --- a/plugins/OpenFolder/openFolder.h +++ /dev/null @@ -1,22 +0,0 @@ -#include -#include -#include "resource.h" - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#define MS_OPENFOLDER_OPEN "openFolder/Open" - -#define OPENFOLDER_VERSION PLUGIN_MAKE_VERSION( 1, 1, 0, 0 ) -#define OPENFOLDER_DESCRIPTION "Adds a menu/toobar item which opens the main Miranda IM folder." -#define MIID_OPENFOLDER { 0x10896143, 0x7249, 0x4b36, { 0xa4, 0x8, 0x65, 0x1, 0xa6, 0xb6, 0x3, 0x5a } } -//#define OPENFOLDER_DB_MODULENAME "openFolder" -#define OPENFOLDER_MODULE_NAME "openfolder" diff --git a/plugins/OpenFolder/openFolder.vcxproj b/plugins/OpenFolder/openFolder.vcxproj index 59757a60b5..735a83c5c0 100644 --- a/plugins/OpenFolder/openFolder.vcxproj +++ b/plugins/OpenFolder/openFolder.vcxproj @@ -20,30 +20,25 @@ {8D233B9A-2744-4B62-94FC-7872FDDA4683} - openFolder OpenFolder DynamicLibrary - false Unicode true DynamicLibrary - false Unicode true DynamicLibrary - false Unicode DynamicLibrary - false Unicode @@ -51,19 +46,15 @@ - - - - @@ -72,186 +63,107 @@ $(SolutionDir)$(Configuration)64\Plugins\ $(SolutionDir)$(Configuration)\Obj\$(ProjectName)\ $(SolutionDir)$(Configuration)64\Obj\$(ProjectName)\ - true - true $(SolutionDir)$(Configuration)\Plugins\ $(SolutionDir)$(Configuration)64\Plugins\ $(SolutionDir)$(Configuration)\Obj\$(ProjectName)\ $(SolutionDir)$(Configuration)64\Obj\$(ProjectName)\ - false - false + true - - _DEBUG;%(PreprocessorDefinitions) - true - true - Win32 - .\Debug/openFolder.tlb - - - Disabled ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;openFolder_EXPORTS;%(PreprocessorDefinitions) + WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) true EnableFastChecks MultiThreadedDebugDLL Level3 - true EditAndContinue _DEBUG;%(PreprocessorDefinitions) - 0x0809 + ..\..\include\msapi - true true $(IntDir)$(TargetName).lib - MachineX86 $(SolutionDir)\lib - - true - - - _DEBUG;%(PreprocessorDefinitions) - true - true - .\Debug/openFolder.tlb - - - Disabled ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - WIN64;_DEBUG;_WINDOWS;_USRDLL;openFolder_EXPORTS;%(PreprocessorDefinitions) + WIN64;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) EnableFastChecks MultiThreadedDebugDLL Level3 - true - ProgramDatabase _DEBUG;%(PreprocessorDefinitions) - 0x0809 + ..\..\include\msapi - true true $(IntDir)$(TargetName).lib $(SolutionDir)\lib - - true - - - NDEBUG;%(PreprocessorDefinitions) - true - true - Win32 - .\Release/openFolder.tlb - - - Full OnlyExplicitInline ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;openFolder_EXPORTS;%(PreprocessorDefinitions) + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) true - MultiThreadedDLL true Level3 - true Size NDEBUG;%(PreprocessorDefinitions) - 0x0809 + ..\..\include\msapi - true $(IntDir)$(TargetName).lib - MachineX86 true $(SolutionDir)\lib true true - - true - - - NDEBUG;%(PreprocessorDefinitions) - true - true - .\Release/openFolder.tlb - - - Full OnlyExplicitInline ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - WIN64;NDEBUG;_WINDOWS;_USRDLL;openFolder_EXPORTS;%(PreprocessorDefinitions) + WIN64;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) true - MultiThreadedDLL true Level3 - true Size NDEBUG;%(PreprocessorDefinitions) - 0x0809 + ..\..\include\msapi - true $(IntDir)$(TargetName).lib true $(SolutionDir)\lib true true - - true - - - %(AdditionalIncludeDirectories) - %(AdditionalIncludeDirectories) - %(PreprocessorDefinitions) - %(PreprocessorDefinitions) - %(AdditionalIncludeDirectories) - %(AdditionalIncludeDirectories) - %(PreprocessorDefinitions) - %(PreprocessorDefinitions) - - - - - %(PreprocessorDefinitions) - %(PreprocessorDefinitions) - %(PreprocessorDefinitions) - %(PreprocessorDefinitions) - + - - + - + + diff --git a/plugins/OpenFolder/openFolder.vcxproj.filters b/plugins/OpenFolder/openFolder.vcxproj.filters index 08b4522bf9..730e3a5a42 100644 --- a/plugins/OpenFolder/openFolder.vcxproj.filters +++ b/plugins/OpenFolder/openFolder.vcxproj.filters @@ -15,25 +15,20 @@ - + Header Files - + Header Files - - Resource Files - - - - + Resource Files - + Source Files diff --git a/plugins/OpenFolder/res/resource.rc b/plugins/OpenFolder/res/resource.rc new file mode 100644 index 0000000000..5984045ffd --- /dev/null +++ b/plugins/OpenFolder/res/resource.rc @@ -0,0 +1,69 @@ +// Microsoft Visual C++ generated resource script. +// +#include "..\src\resource.h" + +#define APSTUDIO_READONLY_SYMBOLS +///////////////////////////////////////////////////////////////////////////// +// +// Generated from the TEXTINCLUDE 2 resource. +// +#include "afxres.h" + +///////////////////////////////////////////////////////////////////////////// +#undef APSTUDIO_READONLY_SYMBOLS + +///////////////////////////////////////////////////////////////////////////// +// English (U.K.) resources + +#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENG) +#ifdef _WIN32 +LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_UK +#pragma code_page(1252) +#endif //_WIN32 + +///////////////////////////////////////////////////////////////////////////// +// +// Icon +// + +// Icon with lowest ID value placed first to ensure application icon +// remains consistent on all systems. +IDI_FOLDER ICON "openfolder.ico" + +#endif // English (U.K.) resources +///////////////////////////////////////////////////////////////////////////// + + + +#ifndef APSTUDIO_INVOKED +///////////////////////////////////////////////////////////////////////////// +// +// Generated from the TEXTINCLUDE 3 resource. +// + +///////////////////////////////////////////////////////////////////////////// +// +// TEXTINCLUDE +// + +1 TEXTINCLUDE +BEGIN + "..\\src\\resource.h\0" +END + +2 TEXTINCLUDE +BEGIN + "#include ""afxres.h""\r\n" + "\0" +END + +3 TEXTINCLUDE +BEGIN + "\r\n" + "\0" +END + + +///////////////////////////////////////////////////////////////////////////// +#endif // not APSTUDIO_INVOKED + diff --git a/plugins/OpenFolder/resource.h b/plugins/OpenFolder/resource.h deleted file mode 100644 index 599c82bbba..0000000000 --- a/plugins/OpenFolder/resource.h +++ /dev/null @@ -1,18 +0,0 @@ -//{{NO_DEPENDENCIES}} -// Microsoft Visual C++ generated include file. -// Used by resource.rc -// -#define IDI_FOLDER 101 -#define IDB_BITMAP1 103 -#define IDB_FOLDER 103 - -// Next default values for new objects -// -#ifdef APSTUDIO_INVOKED -#ifndef APSTUDIO_READONLY_SYMBOLS -#define _APS_NEXT_RESOURCE_VALUE 104 -#define _APS_NEXT_COMMAND_VALUE 40001 -#define _APS_NEXT_CONTROL_VALUE 1000 -#define _APS_NEXT_SYMED_VALUE 101 -#endif -#endif diff --git a/plugins/OpenFolder/resource.rc b/plugins/OpenFolder/resource.rc deleted file mode 100644 index 5aafd26f8d..0000000000 --- a/plugins/OpenFolder/resource.rc +++ /dev/null @@ -1,69 +0,0 @@ -// Microsoft Visual C++ generated resource script. -// -#include "resource.h" - -#define APSTUDIO_READONLY_SYMBOLS -///////////////////////////////////////////////////////////////////////////// -// -// Generated from the TEXTINCLUDE 2 resource. -// -#include "afxres.h" - -///////////////////////////////////////////////////////////////////////////// -#undef APSTUDIO_READONLY_SYMBOLS - -///////////////////////////////////////////////////////////////////////////// -// English (U.K.) resources - -#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENG) -#ifdef _WIN32 -LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_UK -#pragma code_page(1252) -#endif //_WIN32 - -///////////////////////////////////////////////////////////////////////////// -// -// Icon -// - -// Icon with lowest ID value placed first to ensure application icon -// remains consistent on all systems. -IDI_FOLDER ICON "res/openfolder.ico" - -#endif // English (U.K.) resources -///////////////////////////////////////////////////////////////////////////// - - - -#ifndef APSTUDIO_INVOKED -///////////////////////////////////////////////////////////////////////////// -// -// Generated from the TEXTINCLUDE 3 resource. -// - -///////////////////////////////////////////////////////////////////////////// -// -// TEXTINCLUDE -// - -1 TEXTINCLUDE -BEGIN - "resource.h\0" -END - -2 TEXTINCLUDE -BEGIN - "#include ""afxres.h""\r\n" - "\0" -END - -3 TEXTINCLUDE -BEGIN - "\r\n" - "\0" -END - - -///////////////////////////////////////////////////////////////////////////// -#endif // not APSTUDIO_INVOKED - diff --git a/plugins/OpenFolder/src/openFolder.cpp b/plugins/OpenFolder/src/openFolder.cpp new file mode 100644 index 0000000000..a39420ae73 --- /dev/null +++ b/plugins/OpenFolder/src/openFolder.cpp @@ -0,0 +1,127 @@ +#include "openFolder.h" + +int hLangpack = 0; +HINSTANCE hInst; +HANDLE hServiceOpenFolder, hButtonTopToolbar, hIconOpenFolder; + +PLUGININFOEX pluginInfoEx = +{ + sizeof( PLUGININFOEX ), + "Open Miranda Folder", + OPENFOLDER_VERSION, + OPENFOLDER_DESCRIPTION, + "jarvis, Kreisquadratur", + "jarvis@jabber.cz, djui@kreisquadratur.de", + "© 2008 jarvis, © 2004 Kreisquadratur", + "http://nightly.miranda.im/", + UNICODE_AWARE, //not transient + MIID_OPENFOLDER // {10896143-7249-4b36-A408-6501A6B6035A} +}; + +BOOL WINAPI DllMain( HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved ) +{ + hInst = hinstDLL; + return TRUE; +} + +static INT_PTR MenuCommand_OpenFolder(WPARAM wParam, LPARAM lParam) +{ + TCHAR szMirandaPath[MAX_PATH]; + GetModuleFileName( GetModuleHandle(NULL), szMirandaPath, SIZEOF(szMirandaPath)); + TCHAR* p = _tcsrchr( szMirandaPath, '\\' ); + if ( p && p + 1 ) + *( p + 1 ) = 0; + + if ( GetAsyncKeyState( VK_CONTROL ) & 0x8000 ) + ShellExecute(0, _T("explore"), szMirandaPath, 0, 0, SW_SHOWNORMAL); + else + ShellExecute(0, _T("open"), szMirandaPath, 0, 0, SW_SHOWNORMAL); + + return 0; +} + +// toptoolbar (if plugin is installed) +static int ToptoolBarHook(WPARAM wParam, LPARAM lParam) +{ + TTBButton ttbb = { 0 }; + ttbb.cbSize = sizeof( ttbb ); + ttbb.hIconHandleUp = hIconOpenFolder; + ttbb.pszService = MS_OPENFOLDER_OPEN; + ttbb.dwFlags = TTBBF_VISIBLE | TTBBF_SHOWTOOLTIP; + ttbb.name = LPGEN("Open Folder"); + TopToolbar_AddButton(&ttbb); + return 0; +} + +static int ModulesLoaded(WPARAM wParam, LPARAM lParam) +{ + TCHAR szFile[MAX_PATH]; + GetModuleFileName( hInst, szFile, MAX_PATH ); + + char szSettingName[64]; + mir_snprintf(szSettingName, sizeof( szSettingName ), "%s_%s", OPENFOLDER_MODULE_NAME, "open"); + + // icolib (0.7+) + SKINICONDESC sid = { 0 }; + sid.cbSize = sizeof( SKINICONDESC ); + sid.ptszDefaultFile = szFile; + sid.flags = SIDF_PATH_TCHAR; + sid.cx = sid.cy = 16; + sid.pszSection = LPGEN("Open Folder"); + sid.pszName = szSettingName; + sid.pszDescription = LPGEN("Open Folder"); + sid.iDefaultIndex = -IDI_FOLDER; + hIconOpenFolder = Skin_AddIcon(&sid); + + // hotkeys service (0.8+) + HOTKEYDESC hotkey = { 0 }; + hotkey.cbSize = sizeof( hotkey ); + hotkey.pszName = LPGEN("Open Folder"); + hotkey.pszDescription = LPGEN("Open Folder"); + hotkey.pszSection = "Main"; + hotkey.pszService = MS_OPENFOLDER_OPEN; + hotkey.DefHotKey = MAKEWORD( 'O', HOTKEYF_SHIFT | HOTKEYF_ALT ); + Hotkey_Register(&hotkey); + + CLISTMENUITEM mi = { 0 }; + mi.cbSize = sizeof( mi ); + mi.position = 0x7FFFFFFF; + mi.flags = CMIF_ICONFROMICOLIB; + mi.icolibItem = hIconOpenFolder; + mi.pszName = LPGEN("Open Folder"); + mi.pszService = MS_OPENFOLDER_OPEN; + Menu_AddMainMenuItem(&mi); + return 0; +} + +HICON LoadIconExEx( const char* IcoLibName, int NonIcoLibIcon ) +{ + char szSettingName[64]; + mir_snprintf( szSettingName, sizeof( szSettingName ), "%s_%s", OPENFOLDER_MODULE_NAME, IcoLibName ); + return Skin_GetIcon(szSettingName); +} + +extern "C" __declspec( dllexport ) PLUGININFOEX* MirandaPluginInfoEx( DWORD mirandaVersion ) +{ + return &pluginInfoEx; +} + +///////////////////////////////////////////////////////////////////////////////////////// + +extern "C" int __declspec( dllexport ) Load() +{ + mir_getLP(&pluginInfoEx); + + hServiceOpenFolder = CreateServiceFunction(MS_OPENFOLDER_OPEN, MenuCommand_OpenFolder); + + HookEvent(ME_SYSTEM_MODULESLOADED, ModulesLoaded); + return 0; +} + +///////////////////////////////////////////////////////////////////////////////////////// + +extern "C" int __declspec( dllexport ) Unload() +{ + DestroyServiceFunction(hServiceOpenFolder); + return 0; +} diff --git a/plugins/OpenFolder/src/openFolder.h b/plugins/OpenFolder/src/openFolder.h new file mode 100644 index 0000000000..d7eb02dad8 --- /dev/null +++ b/plugins/OpenFolder/src/openFolder.h @@ -0,0 +1,22 @@ +#include +#include +#include "resource.h" + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#define MS_OPENFOLDER_OPEN "openFolder/Open" + +#define OPENFOLDER_VERSION PLUGIN_MAKE_VERSION( 1, 1, 0, 0 ) +#define OPENFOLDER_DESCRIPTION "Adds a menu/toobar item which opens the main Miranda IM folder." +#define MIID_OPENFOLDER { 0x10896143, 0x7249, 0x4b36, { 0xa4, 0x8, 0x65, 0x1, 0xa6, 0xb6, 0x3, 0x5a } } +//#define OPENFOLDER_DB_MODULENAME "openFolder" +#define OPENFOLDER_MODULE_NAME "openfolder" diff --git a/plugins/OpenFolder/src/resource.h b/plugins/OpenFolder/src/resource.h new file mode 100644 index 0000000000..599c82bbba --- /dev/null +++ b/plugins/OpenFolder/src/resource.h @@ -0,0 +1,18 @@ +//{{NO_DEPENDENCIES}} +// Microsoft Visual C++ generated include file. +// Used by resource.rc +// +#define IDI_FOLDER 101 +#define IDB_BITMAP1 103 +#define IDB_FOLDER 103 + +// Next default values for new objects +// +#ifdef APSTUDIO_INVOKED +#ifndef APSTUDIO_READONLY_SYMBOLS +#define _APS_NEXT_RESOURCE_VALUE 104 +#define _APS_NEXT_COMMAND_VALUE 40001 +#define _APS_NEXT_CONTROL_VALUE 1000 +#define _APS_NEXT_SYMED_VALUE 101 +#endif +#endif -- cgit v1.2.3