xrdp/xorg/tests/xdemo/common.h

20 lines
215 B
C
Raw Normal View History

2012-02-12 03:44: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