enabled gst
[profile/ivi/opencv.git] / cmake / checks / win32uitest.cpp
1 #include <windows.h>
2
3 int main(int argc, char** argv)
4 {
5     CreateWindow(NULL /*lpClassName*/, NULL /*lpWindowName*/, 0 /*dwStyle*/, 0 /*x*/,
6                  0 /*y*/, 0 /*nWidth*/, 0 /*nHeight*/, NULL /*hWndParent*/, NULL /*hMenu*/,
7                 NULL /*hInstance*/,  NULL /*lpParam*/);
8     DeleteDC(NULL);
9
10     return 0;
11 }