WNDCLASSEX wcex = {};
wcex.cbSize = sizeof(WNDCLASSEX);
wcex.style = CS_HREDRAW | CS_VREDRAW;
wcex.lpfnWndProc = WndProc;
wcex.cbClsExtra = 0;
wcex.cbWndExtra = 0;
wcex.hInstance = hInstance;
wcex.hIcon = LoadIcon(hInstance, MAKEINTRESOURCE(EXAMPLE_ICON));
wcex.hCursor = LoadCursor(nullptr, IDC_ARROW);
wcex.hbrBackground = (HBRUSH)(COLOR_WINDOW + 1);
wcex.lpszMenuName = nullptr;
wcex.lpszClassName = "ExampleIconWindowClass";
wcex.hIconSm = LoadIcon(wcex.hInstance, MAKEINTRESOURCE(IDI_APPLICATION));
Code Example |
---|
Cpp :: C++ Things to Remember |
Cpp :: 976. Largest Perimeter Triangle leetcode solution in c++ |
Cpp :: e.cpp |
Cpp :: typeid to string c++ |
Cpp :: c++ else |
Cpp :: three-way comparison c++ |
Cpp :: c++ const shared_ptr |
Cpp :: c++ compile to msi |
Cpp :: amusia |
Cpp :: c++ create vector of size |
Cpp :: if c++ |
Cpp :: is palindrom |
Cpp :: c++ vector remove element by value |
Cpp :: deletion in bst |
Cpp :: array list cpp |
Cpp :: qt how to make a file browser |
Cpp :: ceil value in c++ using formula |
Cpp :: 2927260.eps 2927262.jpg 2927263.ai License free.txt License premium.txt |
C :: csrf_exempt |
C :: c check if file exists |
C :: how to make a hello world program in c |
C :: scanf ignore new line |
C :: c how to get an integer from user input |
C :: calculator in c |
C :: convert number to string c |
C :: arduino millis() |
C :: %d in c |
C :: what is system function in c |
C :: directory folders structure show windows 10 command prompt |
C :: c code to add two numbers |