Print a GUID variable

前端 未结 11 1811
孤城傲影
孤城傲影 2021-02-01 02:12

I have a GUID variable and I want to write inside a text file its value. GUID definition is:

typedef struct _GUID {          // size is 16
    DWORD Data1;
             


        
11条回答
  •  青春惊慌失措
    2021-02-01 02:26

    Use UuidToString function to convert GUID to string. The function accepts UUID type which is typedef of GUID.

提交回复
热议问题