diff options
Diffstat (limited to 'plugins/LotusNotify')
-rw-r--r-- | plugins/LotusNotify/src/LotusNotify.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/LotusNotify/src/LotusNotify.cpp b/plugins/LotusNotify/src/LotusNotify.cpp index ae81d15881..7b7dbd1e23 100644 --- a/plugins/LotusNotify/src/LotusNotify.cpp +++ b/plugins/LotusNotify/src/LotusNotify.cpp @@ -1535,7 +1535,7 @@ static int modulesloaded(WPARAM wParam, LPARAM lParam) log(L"Initializing Lotus");
- if((NotesInitExtended1) (__argc, __argv)){
+ if((NotesInitExtended1) (0, NULL)){
//initialize lotus //TODO: Lotus can terminate miranda process here with msgbox "Shared Memory from a previous Notes/Domino run has been detected, this process will exit now"
startuperror += 4;
@@ -1716,7 +1716,7 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD dwReason, LPVOID lpvReserved) Plugin_Terminated = false;
hInst = hinstDLL;
break;
- case DLL_PROCESS_DETACH:
+ case DLL_PROCESS_DETACH:
/* Deregister extension manager callbacks */
Plugin_Terminated = true;
ExtClear();
|