diff options
author | George Hazan <george.hazan@gmail.com> | 2013-01-05 13:38:59 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-01-05 13:38:59 +0000 |
commit | 3cd763c7a9c62bfb1c1dc43246b2199ee9427e92 (patch) | |
tree | cc8edc9da30eeda76be402bd940f35acbd0e1c97 /plugins/SMS/src/main.cpp | |
parent | 8860a0297c57d8c5fe3e6ddaef64ee6780ea116b (diff) |
64-bit compatibility fixes for the SMS plugin
git-svn-id: http://svn.miranda-ng.org/main/trunk@2979 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/SMS/src/main.cpp')
-rw-r--r-- | plugins/SMS/src/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/SMS/src/main.cpp b/plugins/SMS/src/main.cpp index bbf821ed03..2467838e46 100644 --- a/plugins/SMS/src/main.cpp +++ b/plugins/SMS/src/main.cpp @@ -193,7 +193,7 @@ BOOL WINAPI DllMain(HINSTANCE hInstance,DWORD dwReason,LPVOID lpvReserved) break;
}
- return(TRUE);
+ return TRUE;
}
extern "C" int __declspec(dllexport) Load(void)
@@ -229,7 +229,7 @@ int OnModulesLoaded(WPARAM wParam,LPARAM lParam) LoadModules();
- return(0);
+ return 0;
}
@@ -241,7 +241,7 @@ int OnPreShutdown(WPARAM wParam,LPARAM lParam) SendSMSWindowDestroy();
FreeAccountList();
-return(0);
+ return 0;
}
|