3 wxString GenerateUUID()
11 UuidToString(&UUIDData, (RPC_WSTR*)&UUIDStr);
12 wxString Result(UUIDStr);
13 #elif defined(__HAIKU__)
21 FILE *uuid_hdl = popen("uuidgen", "r");
23 if (uuid_hdl == NULL) {
34 while (fgets(strdata, sizeof(strdata), uuid_hdl) != NULL){
35 uuidout.append(strdata);
40 Result = wxString::Format(wxT("%s"), uuidout);
49 bool CheckUUID(wxString UUIDInc)