Release 971101
[wine] / misc / toolhelp.c
1 /*
2  * Misc Toolhelp functions
3  *
4  * Copyright 1996 Marcus Meissner
5  */
6
7 #include <stdlib.h>
8 #include <stdio.h>
9 #include <string.h>
10 #include <unistd.h>
11 #include <ctype.h>
12 #include "windows.h"
13 #include "win.h"
14 #include "toolhelp.h"
15 #include "stddebug.h"
16 #include "debug.h"
17
18 /* FIXME: to make this working, we have to callback all these registered 
19  * functions from all over the WINE code. Someone with more knowledge than
20  * me please do that. -Marcus
21  */
22 static struct notify
23 {
24     HTASK16   htask;
25     FARPROC16 lpfnCallback;
26     WORD     wFlags;
27 } *notifys = NULL;
28
29 static int nrofnotifys = 0;
30
31 BOOL16 WINAPI NotifyRegister( HTASK16 htask, FARPROC16 lpfnCallback,
32                               WORD wFlags )
33 {
34     int i;
35
36     dprintf_toolhelp( stddeb, "NotifyRegister(%x,%lx,%x) called.\n",
37                       htask, (DWORD)lpfnCallback, wFlags );
38     for (i=0;i<nrofnotifys;i++)
39         if (notifys[i].htask==htask)
40             break;
41     if (i==nrofnotifys) {
42         if (notifys==NULL)
43             notifys=(struct notify*)HeapAlloc( GetProcessHeap(), 0,
44                                                sizeof(struct notify) );
45         else
46             notifys=(struct notify*)HeapReAlloc( GetProcessHeap(), 0, notifys,
47                                         sizeof(struct notify)*(nrofnotifys+1));
48         if (!notifys) return FALSE;
49         nrofnotifys++;
50     }
51     notifys[i].htask=htask;
52     notifys[i].lpfnCallback=lpfnCallback;
53     notifys[i].wFlags=wFlags;
54     return TRUE;
55 }
56
57 BOOL16 WINAPI NotifyUnregister( HTASK16 htask )
58 {
59     int i;
60     
61     dprintf_toolhelp( stddeb, "NotifyUnregister(%x) called.\n", htask );
62     for (i=nrofnotifys;i--;)
63         if (notifys[i].htask==htask)
64             break;
65     if (i==-1)
66         return FALSE;
67     memcpy(notifys+i,notifys+(i+1),sizeof(struct notify)*(nrofnotifys-i-1));
68     notifys=(struct notify*)HeapReAlloc( GetProcessHeap(), 0, notifys,
69                                         (nrofnotifys-1)*sizeof(struct notify));
70     nrofnotifys--;
71     return TRUE;
72 }