摘要:
#include<windows.h>#include<windowsx.h>#include<stdio.h>#include<math.h>#define WINDOW_CLASS_NAME "WINCLASS1"LRESULT CALLBACK WindowProc(HWND hwnd,UINT msg,WPARARM wparam,LPARAM lparam){ PAINTSTRUCT ps; HDC hdc; switch(msg) { case WM_CREATE: { //INIT CODE ... 阅读全文