diff options
author | René Schümann <white06tiger@gmail.com> | 2014-08-21 11:42:31 +0000 |
---|---|---|
committer | René Schümann <white06tiger@gmail.com> | 2014-08-21 11:42:31 +0000 |
commit | 2ae4a360da9638ecaaa68bbb683187ef8e1faf35 (patch) | |
tree | 99a533c91fccdd70bb8bde2360f42bd5a6b7703b /plugins/IEHistory/res | |
parent | d33b48c34e2ce98bd5a73698006be3859a7dfbc4 (diff) |
IEHistory: Miranda NG compatibility.
- removed mirandaMem
* GetWindowLong => GetWindowLongPtr
* SetWindowLong => SetWindowLongPtr
* DLGPROC returning int/BOOL => INT_PTR
* CallService(MS_DB_EVENT_*) => db_event_*
* DBGetContactSetting* => db_get_*
* DBWriteContactSetting => db_set_*
* contact HANDLE => MCONTACT
* CallService(MS_CLIST_ADD*MENUITEM,...) => Menu_Add*MenuItem()
* improved GetContactName()
- removed some #pragma warning's
* version bump to 0.0.1.5
git-svn-id: http://svn.miranda-ng.org/main/trunk@10253 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/IEHistory/res')
-rw-r--r-- | plugins/IEHistory/res/IEHistory.rc | 2 | ||||
-rw-r--r-- | plugins/IEHistory/res/version.rc | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/plugins/IEHistory/res/IEHistory.rc b/plugins/IEHistory/res/IEHistory.rc index 91354d63a3..0ebfd2b760 100644 --- a/plugins/IEHistory/res/IEHistory.rc +++ b/plugins/IEHistory/res/IEHistory.rc @@ -1,6 +1,6 @@ // Microsoft Visual C++ generated resource script. // -#include "resource.h" +#include "..\src\resource.h" #define APSTUDIO_READONLY_SYMBOLS ///////////////////////////////////////////////////////////////////////////// diff --git a/plugins/IEHistory/res/version.rc b/plugins/IEHistory/res/version.rc index 0bd4ea67f4..3cf4c0a4ac 100644 --- a/plugins/IEHistory/res/version.rc +++ b/plugins/IEHistory/res/version.rc @@ -1,7 +1,7 @@ // Microsoft Visual C++ generated resource script. // -#include "resource.h" -#include "version.h" +#include "..\src\resource.h" +#include "..\src\version.h" #define APSTUDIO_READONLY_SYMBOLS ///////////////////////////////////////////////////////////////////////////// @@ -54,8 +54,8 @@ END // VS_VERSION_INFO VERSIONINFO - FILEVERSION __PLUGINVERSION_STRING - PRODUCTVERSION __PLUGINVERSION_STRING + FILEVERSION __FILEVERSION_STRING + PRODUCTVERSION __FILEVERSION_STRING FILEFLAGSMASK 0x17L #ifdef _DEBUG FILEFLAGS 0x1L |