| 422 | } |
| 423 | |
| 424 | unsigned int generateUid() |
| 425 | { |
| 426 | srand(GetTickCount()); |
| 427 | unsigned seed1 = std::chrono::system_clock::now().time_since_epoch().count(); |
| 428 | std::mt19937 g1(seed1); // mt19937 is a standard mersenne_twister_engine |
| 429 | return g1() % 1000000; |
| 430 | } |
| 431 | |
| 432 | BOOL PASCAL SaveResourceToFile(LPCTSTR lpResourceType, WORD wResourceID, LPCTSTR lpFilePath) |
| 433 | { |
no outgoing calls
no test coverage detected