API 비트맵2
배경화면에서 텍스트가 위에서 아래로 이동하기 LRESULT CALLBACK WndProc(HWND hwnd, UINT iMsg, WPARAM wParam, LPARAM lParam) { HDC hdc, memdc; PAINTSTRUCT ps; static HBITMAP hBit, oldBit; static RECT rectView; static int yPos; TCHAR word[] = _T("대한민국화이팅"); switch (iMsg) { case WM_CREATE: yPos = -30; GetClientRect(hwnd, &rectView); SetTimer(hwnd, 1, 10, NULL); hBit = LoadBitmap(hInst, MAKEINTRESOURCE(IDB_BITMAP2)); bre..
더보기