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