Use the HEAP_WINE_SEGPTR flag to specify allocations on the segptr heap.
[wine] / dlls / kernel / windebug.c
1 /*
2  * WINDEBUG.DLL
3  *
4  * Copyright (c) 1997 Andreas Mohr
5  */
6
7 #include <string.h>
8 #include <stdlib.h>
9 #include "windef.h"
10 #include "module.h"
11 #include "debugtools.h"
12
13 DEFAULT_DEBUG_CHANNEL(dll);
14
15 /***********************************************************************
16  *           WinNotify       (WINDEBUG.3)
17  *  written without _any_ docu
18  */
19 void WINAPI WinNotify16(CONTEXT86 *context)
20 {
21         FIXME("(AX=%04x):stub.\n", AX_reg(context));
22         switch (AX_reg(context))
23         {
24                 case 0x000D:
25                 case 0x000E:
26                 case 0x0060:    /* do nothing */
27                                 break;
28                 case 0x0062: 
29                                 break;
30                 case 0x0063:    /* do something complicated */
31                                 break;
32                 case 0x0064:    /* do something complicated */
33                                 break;
34                 case 0x0065:    /* do something complicated */
35                                 break;
36                 case 0x0050:    /* do something complicated, now just return error */
37                                 SET_CFLAG(context);
38                                 break;
39                 case 0x0052:    /* do something complicated */
40                                 break;
41                 default:
42                                 break;
43         }       
44 }