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.
 
 
 
 
 
 

34 lines
680 B

/*
* hndtrans.h - Handle translation description.
*/
/* Types
********/
/* handles */
DECLARE_HANDLE(HHANDLETRANS);
DECLARE_STANDARD_TYPES(HHANDLETRANS);
DECLARE_HANDLE(HGENERIC);
DECLARE_STANDARD_TYPES(HGENERIC);
/* Prototypes
*************/
/* hndtrans.c */
extern BOOL CreateHandleTranslator(LONG, PHHANDLETRANS);
extern void DestroyHandleTranslator(HHANDLETRANS);
extern BOOL AddHandleToHandleTranslator(HHANDLETRANS, HGENERIC, HGENERIC);
extern void PrepareForHandleTranslation(HHANDLETRANS);
extern BOOL TranslateHandle(HHANDLETRANS, HGENERIC, PHGENERIC);
#ifdef DEBUG
extern BOOL IsValidHHANDLETRANS(HHANDLETRANS);
#endif