mirror of https://github.com/tongzx/nt5src
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.
29 lines
613 B
29 lines
613 B
/*
|
|
* resstr.h - Common return code to string translation routines description.
|
|
*
|
|
* Taken from URL code by ChrisPi 9-11-95
|
|
*
|
|
*/
|
|
|
|
#ifndef _RESSTR_H_
|
|
#define _RESSTR_H_
|
|
|
|
/* Prototypes
|
|
*************/
|
|
|
|
/* resstr.c */
|
|
|
|
#ifdef DEBUG
|
|
|
|
extern PCSTR GetINTString(int);
|
|
extern PCSTR GetINT_PTRString(INT_PTR);
|
|
extern PCSTR GetULONGString(ULONG);
|
|
extern PCSTR GetBOOLString(BOOL);
|
|
extern PCSTR GetPVOIDString(PVOID);
|
|
extern PCSTR GetClipboardFormatNameString(UINT);
|
|
extern PCSTR GetCOMPARISONRESULTString(COMPARISONRESULT);
|
|
extern PCSTR GetHRESULTString(HRESULT);
|
|
|
|
#endif /* DEBUG */
|
|
|
|
#endif /* _RESSTR_H_ */
|