diff options
author | Jay Sorg <jay.sorg@gmail.com> | 2013-07-23 19:26:07 -0700 |
---|---|---|
committer | Jay Sorg <jay.sorg@gmail.com> | 2013-07-23 19:26:07 -0700 |
commit | af8ca90784389f5b24df8721b34155b4a3ac12dd (patch) | |
tree | ec5619854a4eb057099abb2b5db9d1fe3b0848a5 /xorg/server/module/rdpPushPixels.c | |
parent | 1f84c36ddd9803ae328713960bac4694374382ab (diff) | |
download | xrdp-proprietary-af8ca90784389f5b24df8721b34155b4a3ac12dd.tar.gz xrdp-proprietary-af8ca90784389f5b24df8721b34155b4a3ac12dd.zip |
xorg driver, work on input
Diffstat (limited to 'xorg/server/module/rdpPushPixels.c')
-rw-r--r-- | xorg/server/module/rdpPushPixels.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/xorg/server/module/rdpPushPixels.c b/xorg/server/module/rdpPushPixels.c index 3491d556..b02bc936 100644 --- a/xorg/server/module/rdpPushPixels.c +++ b/xorg/server/module/rdpPushPixels.c @@ -19,6 +19,17 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ +#include <stdio.h> +#include <stdlib.h> +#include <string.h> + +/* this should be before all X11 .h files */ +#include <xorg-server.h> + +/* all driver need this */ +#include <xf86.h> +#include <xf86_OSproc.h> + #include "rdp.h" #include "rdpDraw.h" |