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.
 
 
 
 
 
 

44 lines
859 B

#ifndef __GUIDTABLES_H__
#define __GUIDTABLES_H__
typedef DWORD (*FN_CONVERT_NAME_TO_GUID) (
IN LPCWSTR pObjectName,
OUT GUID * pGuid
);
FN_CONVERT_NAME_TO_GUID MartaConvertNameToGuid [] = {
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
&MartaConvertDsObjectNameToGuid,
&MartaConvertDsObjectNameToGuid,
NULL,
NULL
};
typedef DWORD (*FN_CONVERT_GUID_TO_NAME) (
IN GUID Guid,
OUT LPWSTR * ppObjectName
);
FN_CONVERT_GUID_TO_NAME MartaConvertGuidToName [] = {
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
&MartaConvertGuidToDsName,
&MartaConvertGuidToDsName,
NULL,
NULL
};
#endif