Displaying 2 results from an estimated 2 matches for "callbackproc".
2001 Jun 22
2
DDE Error
On Thu, 21 Jun 2001 20:53:30 +0200, Flo <sherpac@gmx.de> wrote:
>
>DdeInitialize(InstId, (PFNCALLBACK)(FARPROC)
>CallBackProc, APPCMD_CLIENTONLY, 0) == DMLERR_NO_ERROR, file
>..\dde\MyDDE.cpp,
>line 238
>
>happens after the following cmd line (wine) message:
>
>fixme:ddeml:DdeConnect (0x1,49180,49181,(nil)): stub
>
>
>The application may try to run MSIE at this point. Is there any workaround...
2006 Oct 18
1
[PATCH] Compiz Events
...f void (*HandleEventProc) (CompDisplay *display,
XEvent *event);
+typedef void (*HandleCompizEventProc) (CompDisplay *display,
+ char *pluginName,
+ char *eventName,
+ CompOption *option,
+ int nOption);
+
typedef Bool (*CallBackProc) (void *closure);
typedef void (*ForEachWindowProc) (CompWindow *window,
@@ -749,7 +755,8 @@ struct _CompDisplay {
InitPluginForDisplayProc initPluginForDisplay;
FiniPluginForDisplayProc finiPluginForDisplay;
- HandleEventProc handleEvent;
+ HandleEventProc handleEvent;...