1 #ifndef GDI_SW_WINSYS_H
2 #define GDI_SW_WINSYS_H
3 
4 #include <windows.h>
5 
6 #include "pipe/p_compiler.h"
7 #include "state_tracker/sw_winsys.h"
8 
9 void gdi_sw_display( struct sw_winsys *winsys,
10                      struct sw_displaytarget *dt,
11                      HDC hDC );
12 
13 struct sw_winsys *
14 gdi_create_sw_winsys(void);
15 
16 #endif
17