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
282 B
19 lines
282 B
#ifndef __UTILS_H__
|
|
#define __UTILS_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
BOOL GUIDFromString(LPCTSTR lpszGuid, GUID* pGuid);
|
|
BOOL StringFromGUID(LPTSTR lpszGuid, GUID* pGuid);
|
|
ULONGLONG ullMakeKey(LPCTSTR lpszStr);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|
|
|