Blame include/ntapi/nt_guid.h

dd89bb
#ifndef _NT_GUID_H_
dd89bb
#define _NT_GUID_H_
dd89bb
dd89bb
#include <psxtypes/psxtypes.h>
dd89bb
#include <ntapi/nt_object.h>
dd89bb
dd89bb
typedef struct _nt_guid_str_utf16 {
dd89bb
	wchar16_t	lbrace;
dd89bb
	wchar16_t	group1[8];
dd89bb
	wchar16_t	dash1;
dd89bb
	wchar16_t	group2[4];
dd89bb
	wchar16_t	dash2;
dd89bb
	wchar16_t	group3[4];
dd89bb
	wchar16_t	dash3;
dd89bb
	wchar16_t	group4[4];
dd89bb
	wchar16_t	dash4;
dd89bb
	wchar16_t	group5[12];
dd89bb
	wchar16_t	rbrace;
dd89bb
} nt_guid_str_utf16, nt_uuid_str_utf16;
dd89bb
dd89bb
typedef void __fastcall ntapi_tt_guid_copy(
dd89bb
	__out	nt_guid *	pguid_dst,
dd89bb
	__in	const nt_guid *	pguid_src);
dd89bb
dd89bb
typedef int32_t __fastcall ntapi_tt_guid_compare(
dd89bb
	__in	const nt_guid *	pguid_dst,
dd89bb
	__in	const nt_guid *	pguid_src);
dd89bb
dd89bb
typedef void __fastcall ntapi_tt_guid_to_utf16_string(
dd89bb
	__in	const nt_guid *		guid,
dd89bb
	__out	nt_guid_str_utf16 *	guid_str);
dd89bb
dd89bb
typedef int32_t __fastcall ntapi_tt_utf16_string_to_guid(
dd89bb
	__in	nt_guid_str_utf16 *	guid_str,
dd89bb
	__out	nt_guid *		guid);
dd89bb
dd89bb
#endif