upiwin/src/dc_screen.h
2019-12-10 12:42:58 -07:00

15 lines
296 B
C
Executable File

#ifndef __DC_SCREEN_H_INCLUDED
#define __DC_SCREEN_H_INCLUDED
#include "wintype.h"
#include "gfxtype.h"
typedef struct tagSCREENPRIVDATA {
UINT32 pix_per_row;
UINT16 *pdata;
} SCREENPRIVDATA, *PSCREENPRIVDATA;
extern PDCTXT DC_CreateScreenContext(void);
#endif /* __DC_SCREEN_H_INCLUDED */