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.

36 lines
763 B

  1. //
  2. // Enable driver verifier support for ntoskrnl
  3. // Copyright (c) Microsoft Corporation, 1999
  4. //
  5. //
  6. // module: regutil.hxx
  7. // author: DMihai
  8. // created: 04/19/99
  9. // description: resources manipulation routines
  10. //
  11. //
  12. #ifndef __RESUTIL_HXX_INCLUDED__
  13. #define __RESUTIL_HXX_INCLUDED__
  14. #include <windows.h>
  15. #include <tchar.h>
  16. #include <stdlib.h>
  17. /////////////////////////////////////////////////////////////////////
  18. BOOL
  19. GetStringFromResources(
  20. UINT uIdResource,
  21. TCHAR *strResult,
  22. int nBufferLen );
  23. /////////////////////////////////////////////////////////////////////
  24. void
  25. PrintStringFromResources(
  26. UINT uIdResource);
  27. #endif //#ifndef __RESUTIL_HXX_INCLUDED__