Leaked source code of windows server 2003
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
/*****************************************************************************\
* * * winexp.h * * * * Copyright (c) 1993-1994, Microsoft Corp. All rights reserved. * * * \*****************************************************************************/ #ifndef NOATOM
/* atom manager internals */ #define ATOMSTRUC struct atomstruct
typedef ATOMSTRUC NEAR *PATOM; typedef ATOMSTRUC { PATOM chain; WORD usage; /* Atoms are usage counted. */ BYTE len; /* length of ASCIZ name string */ BYTE name; /* beginning of ASCIZ name string */ } ATOMENTRY;
typedef struct { int numEntries; PATOM pAtom[ 1 ]; } ATOMTABLE; ATOMTABLE * PASCAL pAtomTable; #endif
LPSTR WINAPI lstrbscan(LPSTR, LPSTR); LPSTR WINAPI lstrbskip(LPSTR, LPSTR);
int WINAPI OpenPathName(LPSTR, int); int WINAPI DeletePathName(LPSTR); WORD WINAPI _ldup(int);
/* scheduler things that the world knows not */ BOOL WINAPI WaitEvent( HANDLE ); BOOL WINAPI PostEvent( HANDLE ); BOOL WINAPI KillTask( HANDLE );
/* print screen hooks */ BOOL WINAPI SetPrtScHook(FARPROC); FARPROC WINAPI GetPrtScHook(void);
|