2014-12-16
05:45 AM
- last edited on
2023-08-01
01:56 PM
by
Doreena Deng
struct API_Guid { UInt32 time_low; unsigned short time_mid; unsigned short time_hi_and_version; unsigned char clock_seq_hi_and_reserved; unsigned char clock_seq_low; unsigned char node[6]; }How I can convert API_Guid to UniString or char array.
2014-12-16 06:38 AM
2014-12-16 01:59 PM
ggiloyan wrote:Solution:
How I can convert API_Guid to UniString or char array.
API_Guid apiGuid = ... char guidStr[64]; APIGuid2GSGuid (apiGuid).ConvertToString (guidStr);
2014-12-17 07:15 AM