libfreerdp-codec: fix build on Windows
authorMarc-André Moreau <marcandre.moreau@gmail.com>
Wed, 23 Jan 2013 16:48:31 +0000 (11:48 -0500)
committerMarc-André Moreau <marcandre.moreau@gmail.com>
Wed, 23 Jan 2013 16:48:31 +0000 (11:48 -0500)
libfreerdp/codec/rfx.c
libfreerdp/codec/rfx_decode.c

index 5f0c384..a765922 100644 (file)
@@ -30,6 +30,7 @@
 #endif
 
 #include <winpr/crt.h>
+#include <winpr/tchar.h>
 #include <winpr/registry.h>
 
 #include <freerdp/codec/rfx.h>
index 0a539ff..8af33be 100644 (file)
@@ -138,9 +138,6 @@ typedef struct _RFX_COMPONENT_WORK_PARAM RFX_COMPONENT_WORK_PARAM;
 void CALLBACK rfx_decode_component_work_callback(PTP_CALLBACK_INSTANCE instance, void* context, PTP_WORK work)
 {
        RFX_COMPONENT_WORK_PARAM* param = (RFX_COMPONENT_WORK_PARAM*) context;
-
-       printf("rfx_decode_component_work_callback\n");
-
        rfx_decode_component(param->context, param->quantization_values, param->data, param->size, param->buffer);
 }