mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2024-12-19 13:23:27 +03:00
14 lines
270 B
C
14 lines
270 B
C
|
#ifndef KOS_SW_WINSYS_H
|
||
|
#define KOS_SW_WINSYS_H
|
||
|
|
||
|
|
||
|
#include "pipe/p_compiler.h"
|
||
|
#include "state_tracker/sw_winsys.h"
|
||
|
|
||
|
void kos_sw_display( struct sw_winsys *winsys,
|
||
|
struct sw_displaytarget *dt);
|
||
|
|
||
|
struct sw_winsys *kos_create_sw_winsys(void);
|
||
|
|
||
|
#endif
|