1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#ifndef BW_WIN32_WINDOW_H #define BW_WIN32_WINDOW_H #define WIN32_LEAN_AND_MEAN #include <Windows.h> typedef struct { HWND handle; } bw_WindowImpl; #endif//BW_WIN32_WINDOW_H