Source code of Windows XP (NT5)
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

  1. /*
  2. * resstr.h - Common return code to string translation routines description.
  3. *
  4. * Taken from URL code by ChrisPi 9-11-95
  5. *
  6. */
  7. #ifndef _RESSTR_H_
  8. #define _RESSTR_H_
  9. /* Prototypes
  10. *************/
  11. /* resstr.c */
  12. #ifdef DEBUG
  13. extern PCSTR GetINTString(int);
  14. extern PCSTR GetINT_PTRString(INT_PTR);
  15. extern PCSTR GetULONGString(ULONG);
  16. extern PCSTR GetBOOLString(BOOL);
  17. extern PCSTR GetPVOIDString(PVOID);
  18. extern PCSTR GetClipboardFormatNameString(UINT);
  19. extern PCSTR GetCOMPARISONRESULTString(COMPARISONRESULT);
  20. extern PCSTR GetHRESULTString(HRESULT);
  21. #endif /* DEBUG */
  22. #endif /* _RESSTR_H_ */