diff options
author | Goraf <goraf@miranda-ng.org> | 2016-02-07 18:01:06 +0000 |
---|---|---|
committer | Goraf <goraf@miranda-ng.org> | 2016-02-07 18:01:06 +0000 |
commit | 1a5efa05af37e5e5eda82d0bf12e1354c9e9deec (patch) | |
tree | 4a2424c8576d0298c096d6a418d0e8a3b487cb4a /plugins/ContextHelp/src/datastore.cpp | |
parent | 5d631fbe39475e5ef90a7639c8309690c6787c71 (diff) |
ContextHelp: x64 fixes (patch by Wishmaster)
git-svn-id: http://svn.miranda-ng.org/main/trunk@16241 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/ContextHelp/src/datastore.cpp')
-rw-r--r-- | plugins/ContextHelp/src/datastore.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/plugins/ContextHelp/src/datastore.cpp b/plugins/ContextHelp/src/datastore.cpp index 2e63343a96..ca04665acf 100644 --- a/plugins/ContextHelp/src/datastore.cpp +++ b/plugins/ContextHelp/src/datastore.cpp @@ -47,10 +47,8 @@ static HANDLE hServiceFileChange, hFileChange; #define DIALOGCACHEEXPIRY 10*60*1000 // delete from cache after those milliseconds
-static INT_PTR ServiceFileChanged(WPARAM wParam, LPARAM lParam)
+static INT_PTR ServiceFileChanged(WPARAM wParam, LPARAM)
{
- UNREFERENCED_PARAMETER(lParam);
-
EnterCriticalSection(&csDialogCache);
for (int i = 0; i < dialogCacheCount; i++)
dialogCache[i].timeLastUsed = 0;
@@ -542,7 +540,6 @@ void SetControlHelp(const char *pszDlgId, const char *pszModule, int ctrlId, TCH static void DialogCacheSaveThread(void *unused)
{
int success = 0;
- UNREFERENCED_PARAMETER(unused);
// TODO: port the following code to write to the helppack file instead
// (netlib code already removed)
|