Guest User

Untitled

a guest
Aug 10th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. void AppEn::Info(){
  2. char buffer[32] = {0};
  3. sprintf_s(buffer, sizeof(buffer), "width:%f, height:%f", screenWidth, screenWidth);
  4. MessageBox(0, buffer, "", MB_OK | MB_ICONINFORMATION);
  5. }
  6.  
  7. void AppEn::Loop(){
  8. MSG msg;
  9. DWORD Time_Start;
  10. _beginthread(Info, 0, (void*)0); // wtf?
Add Comment
Please, Sign In to add comment