Forum Post: RE: What have you done with the GUID function?

  • Thread starter Thread starter eugenel
  • Start date Start date
Status
Not open for further replies.
E

eugenel

Guest
Taking 50 seconds to create 1 million GUIDs is indeed too long but it is possible for C/C++ code to do so in less than 200 milliseconds: GUID guid; int i; for (i = 0; i 1000000; i++) { CoCreateGuid(&guid); }

Continue reading...
 
Status
Not open for further replies.
Back
Top