Release 960712
[wine] / win32 / object_mgt.c
1 /*
2  *      object_mgt.c - Kernel object management functions
3  *
4  *  Revision History:
5  *
6  *  Oct 28 1995 C. Heide
7  *              First created.
8  */
9
10 #include <stdio.h>
11 #include <stdlib.h>
12
13 #include "handle32.h"
14
15 int ValidateKernelObject(KERNEL_OBJECT *ptr)
16 {
17   return (!ptr || (short int)(int)ptr==-1);
18 }
19