win32uitest.cpp 327 B

1234567891011
  1. #include <windows.h>
  2. int main(int argc, char** argv)
  3. {
  4. CreateWindow(NULL /*lpClassName*/, NULL /*lpWindowName*/, 0 /*dwStyle*/, 0 /*x*/,
  5. 0 /*y*/, 0 /*nWidth*/, 0 /*nHeight*/, NULL /*hWndParent*/, NULL /*hMenu*/,
  6. NULL /*hInstance*/, NULL /*lpParam*/);
  7. DeleteDC(NULL);
  8. return 0;
  9. }