Author: mlytwyn
Date: Thu May 12 21:26:10 2016
New Revision: 39745

URL: http://svn.gna.org/viewcvs/gnustep?rev=39745&view=rev
Log:
Fixed extern C reference on Toast DLL function 'removeNotification'

Modified:
    
libs/back/branches/gnustep_testplant_branch/Source/win32/MSUserNotifications/ToastNotifications/ToastNotifications/Debug/ToastNotifications.dll
    
libs/back/branches/gnustep_testplant_branch/Source/win32/MSUserNotifications/ToastNotifications/ToastNotifications/Release/ToastNotifications.dll
    
libs/back/branches/gnustep_testplant_branch/Source/win32/MSUserNotifications/ToastNotifications/ToastNotifications/ToastNotifications/ToastNotifications.cpp

Modified: 
libs/back/branches/gnustep_testplant_branch/Source/win32/MSUserNotifications/ToastNotifications/ToastNotifications/Debug/ToastNotifications.dll
URL: 
http://svn.gna.org/viewcvs/gnustep/libs/back/branches/gnustep_testplant_branch/Source/win32/MSUserNotifications/ToastNotifications/ToastNotifications/Debug/ToastNotifications.dll?rev=39745&r1=39744&r2=39745&view=diff
==============================================================================
Binary files - no diff available.

Modified: 
libs/back/branches/gnustep_testplant_branch/Source/win32/MSUserNotifications/ToastNotifications/ToastNotifications/Release/ToastNotifications.dll
URL: 
http://svn.gna.org/viewcvs/gnustep/libs/back/branches/gnustep_testplant_branch/Source/win32/MSUserNotifications/ToastNotifications/ToastNotifications/Release/ToastNotifications.dll?rev=39745&r1=39744&r2=39745&view=diff
==============================================================================
Binary files - no diff available.

Modified: 
libs/back/branches/gnustep_testplant_branch/Source/win32/MSUserNotifications/ToastNotifications/ToastNotifications/ToastNotifications/ToastNotifications.cpp
URL: 
http://svn.gna.org/viewcvs/gnustep/libs/back/branches/gnustep_testplant_branch/Source/win32/MSUserNotifications/ToastNotifications/ToastNotifications/ToastNotifications/ToastNotifications.cpp?rev=39745&r1=39744&r2=39745&view=diff
==============================================================================
--- 
libs/back/branches/gnustep_testplant_branch/Source/win32/MSUserNotifications/ToastNotifications/ToastNotifications/ToastNotifications/ToastNotifications.cpp
        (original)
+++ 
libs/back/branches/gnustep_testplant_branch/Source/win32/MSUserNotifications/ToastNotifications/ToastNotifications/ToastNotifications/ToastNotifications.cpp
        Thu May 12 21:26:10 2016
@@ -483,7 +483,12 @@
        return FALSE;
 }
 
-EXPORT BOOL __cdecl removeNotification(HICON icon, REMOVE_NOTE_INFO_T 
*noteinfo)
-{
+extern "C" EXPORT BOOL __cdecl removeNotification(HICON icon, 
REMOVE_NOTE_INFO_T *noteinfo)
+{
+#if 1 //defined(DEBUG)
+  static char str[512];
+  sprintf_s(str, "%s:%d: note %p uniqueID: %d", __FUNCTION__, __LINE__, 
noteinfo, noteinfo->uniqueID);
+  OutputDebugStringA(str);
+#endif
   return FALSE;
 }


_______________________________________________
Gnustep-cvs mailing list
[email protected]
https://mail.gna.org/listinfo/gnustep-cvs

Reply via email to