Guest User

Untitled

a guest
Jun 18th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. #include <windows.h>
  2.  
  3. int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrev,
  4. PSTR cmdLine, int cmdShow)
  5. {
  6. HWND desktop = GetDesktopWindow();
  7. HDC hdc = GetWindowDC(desktop);
  8. TCHAR label[] = TEXT("hoge");
  9.  
  10. TextOut(hdc, 100, 100, label, lstrlen(label));
  11.  
  12. UpdateWindow(desktop);
  13. }
Add Comment
Please, Sign In to add comment