xrdp/tests/xdemo/common.h

20 lines
215 B
C
Raw Normal View History

2012-01-26 14:38:13 +08:00
#ifndef __XDEMO_H
#define __XDEMO_H
#define DEBUG
#ifdef DEBUG
#define dprint(x...) printf(x)
#else
#define dprint(x...)
#endif
struct pic_info
{
int width;
int height;
char *pixel_data;
};
#endif