- Several kernel.spec return type mismatch fixes
- [GS]etSelectorBase Win32s offset support by Ulrich Weigand (thanks v.m. !!)
- Move AppToWine/WineToApp macros as W32S_APP2WINE etc. to ldt.h
- LocalNotify() basic support
- Fixes for local heap handling with heap handles created by Virtual*()

diff --git a/misc/callback.c b/misc/callback.c
index c27eeb3..0449c70 100644
--- a/misc/callback.c
+++ b/misc/callback.c
@@ -110,6 +110,17 @@
 
 
 /**********************************************************************
+ *           CALLBACK_CallLocalNotifyFunc
+ */
+static WORD WINAPI CALLBACK_CallLocalNotifyFunc( FARPROC16 proc,
+                                                 WORD wMsg, HLOCAL16 hMem,
+                                                 WORD wArg )
+{
+    return proc( wMsg, hMem, wArg );
+}
+
+
+/**********************************************************************
  *	     CALLBACK_CallSystemTimerProc
  */
 static void WINAPI CALLBACK_CallSystemTimerProc( FARPROC16 proc )
@@ -262,6 +273,7 @@
     CALLBACK_CallWordBreakProc,       /* CallWordBreakProc */
     CALLBACK_CallBootAppProc,         /* CallBootAppProc */
     CALLBACK_CallLoadAppSegProc,      /* CallLoadAppSegProc */
+    CALLBACK_CallLocalNotifyFunc,     /* CallLocalNotifyFunc */
     CALLBACK_CallSystemTimerProc,     /* CallSystemTimerProc */
     CALLBACK_CallResourceHandlerProc, /* CallResourceHandlerProc */
     NULL,                             /* CallPostAppMessageProc */