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.

31 lines
745 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. #include <nmutil.h>
  10. /* Prototypes
  11. *************/
  12. /* resstr.c */
  13. #ifdef DEBUG
  14. extern PCSTR NMINTERNAL GetINTString(int);
  15. extern PCSTR NMINTERNAL GetINT_PTRString(INT_PTR);
  16. extern PCSTR NMINTERNAL GetULONGString(ULONG);
  17. extern PCSTR NMINTERNAL GetBOOLString(BOOL);
  18. extern PCSTR NMINTERNAL GetPVOIDString(PVOID);
  19. extern PCSTR NMINTERNAL GetClipboardFormatNameString(UINT);
  20. extern PCSTR NMINTERNAL GetCOMPARISONRESULTString(COMPARISONRESULT);
  21. extern PCSTR NMINTERNAL GetHRESULTString(HRESULT);
  22. #endif /* DEBUG */
  23. #endif /* _RESSTR_H_ */