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.

19 lines
263 B

  1. #ifndef __UTILS_H__
  2. #define __UTILS_H__
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. BOOL GUIDFromString(LPCTSTR lpszGuid, GUID* pGuid);
  7. BOOL StringFromGUID(LPTSTR lpszGuid, GUID* pGuid);
  8. ULONGLONG ullMakeKey(LPCTSTR lpszStr);
  9. #ifdef __cplusplus
  10. }
  11. #endif
  12. #endif