repo.or.cz
/
wine
/
gsoc-2012-control.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Release 951226
[wine/gsoc-2012-control.git]
/
win32
/
object_mgt.c
blob
649569496dcb5858e1e2930ae96fec3d47048738
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