C++
-
C++ 공튀기기C++ 2018. 7. 5. 01:47
#include LRESULT CALLBACK WndProc(HWND hwnd, UINT iMsg, WPARAM wParam, LPARAM lParam);void CALLBACK TimerProc(HWND hwnd, UINT msg, UINT id, DWORD time); void DrawCircle(HDC hdc, POINT pt){ Ellipse(hdc, pt.x - 10, pt.y - 10, pt.x + 10, pt.y + 10);}int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpszCmdLine, int nCmdShow){ HWND hwnd; MSG msg; WNDCLASS WndClass; WndClass.styl..