| 62 | } |
| 63 | |
| 64 | void back_buffer_init(back_buffer_t * back_buffer, HWND hWnd, int width, int height) |
| 65 | { |
| 66 | back_buffer->hWnd = hWnd; |
| 67 | back_buffer->hdc = CreateCompatibleDC(NULL); |
| 68 | back_buffer->bm = NULL; |
| 69 | |
| 70 | back_buffer_size(back_buffer, width, height); |
| 71 | } |
| 72 | |
| 73 | |
| 74 | typedef struct mswin_nethack_status_window { |
no test coverage detected