main uint/cterm / libmaus / include / maus_win.h
 1#ifndef MAUS_WIN_H
 2#define MAUS_WIN_H
 3
 4#include <stdbool.h>
 5#include <stdint.h>
 6
 7#include <windows.h>
 8
 9typedef struct {
10	HWND           hwnd;
11	HINSTANCE      hInst;
12	HDC            hdc;
13	HBITMAP        hbm;
14	HDC            memdc;
15	bool           resized;
16	uint32_t       rw;
17	uint32_t       rh;
18} MausBackend;
19
20#endif /* MAUS_WIN_H */
21