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.

40 lines
360 B

  1. /*
  2. * symsrv.h
  3. */
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7. void
  8. AppendHexStringWithDWORD(
  9. PSTR sz,
  10. DWORD value
  11. );
  12. void
  13. AppendHexStringWithGUID(
  14. IN OUT PSTR sz,
  15. IN GUID *guid
  16. );
  17. void
  18. AppendHexStringWithOldGUID(
  19. IN OUT PSTR sz,
  20. IN GUID *guid
  21. );
  22. VOID
  23. EnsureTrailingBackslash(
  24. LPSTR sz
  25. );
  26. #ifdef __cplusplus
  27. }
  28. #endif