move to a precompiled header

svn path=/trunk/; revision=30271
This commit is contained in:
Ged Murphy 2007-11-08 13:24:13 +00:00
parent 27f7b560cd
commit d86ceec6a5
21 changed files with 26 additions and 25 deletions

View file

@ -28,7 +28,7 @@
/* indent is confused by this file */ /* indent is confused by this file */
/* *INDENT-OFF* */ /* *INDENT-OFF* */
#include "todo.h" #include <precomp.h>
#define CVAL(p) (*(p++)) #define CVAL(p) (*(p++))
#ifdef NEED_ALIGN #ifdef NEED_ALIGN

View file

@ -21,7 +21,7 @@
//#include <stdlib.h> //#include <stdlib.h>
//#include <string.h> //#include <string.h>
//#include "bsops.h" //#include "bsops.h"
#include "todo.h" #include <precomp.h>
/* globals */ /* globals */
static char * g_bs = 0; static char * g_bs = 0;

View file

@ -19,7 +19,7 @@
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/ */
#include "todo.h" #include <precomp.h>
/* BITMAP CACHE */ /* BITMAP CACHE */
extern int g_pstcache_fd[]; extern int g_pstcache_fd[];

View file

@ -19,7 +19,7 @@
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/ */
#include "todo.h" #include <precomp.h>
#define MAX_CHANNELS 6 #define MAX_CHANNELS 6
#define CHANNEL_CHUNK_LENGTH 1600 #define CHANNEL_CHUNK_LENGTH 1600

View file

@ -18,7 +18,7 @@
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/ */
#include "todo.h" #include <precomp.h>
#define MAX_KEY_NAME 255 #define MAX_KEY_NAME 255
@ -187,7 +187,7 @@ GeneralOnInit(PINFO pInfo)
SetWindowPos(pInfo->hGeneralPage, SetWindowPos(pInfo->hGeneralPage,
NULL, NULL,
15, 13,
110, 110,
0, 0,
0, 0,
@ -717,7 +717,7 @@ DisplayOnInit(PINFO pInfo)
SetWindowPos(pInfo->hDisplayPage, SetWindowPos(pInfo->hDisplayPage,
NULL, NULL,
15, 13,
110, 110,
0, 0,
0, 0,

View file

@ -18,7 +18,7 @@
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/ */
#include "todo.h" #include <precomp.h>
/* Send a self-contained ISO PDU */ /* Send a self-contained ISO PDU */
static void static void

View file

@ -18,7 +18,7 @@
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/ */
#include "todo.h" #include <precomp.h>
//#include <openssl/rc4.h> //#include <openssl/rc4.h>
void * void *

View file

@ -18,7 +18,7 @@
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/ */
#include "todo.h" #include <precomp.h>
uint16 g_mcs_userid; uint16 g_mcs_userid;
extern VCHANNEL g_channels[]; extern VCHANNEL g_channels[];

View file

@ -18,7 +18,7 @@
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/ */
#include "todo.h" #include <precomp.h>
/* mppc decompression */ /* mppc decompression */
/* http://www.faqs.org/rfcs/rfc2118.html */ /* http://www.faqs.org/rfcs/rfc2118.html */

View file

@ -34,4 +34,5 @@
<file>win32.c</file> <file>win32.c</file>
</compilationunit> </compilationunit>
<file>rdc.rc</file> <file>rdc.rc</file>
<pch>precomp.h</pch>
</module> </module>

View file

@ -18,7 +18,7 @@
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/ */
#include "todo.h" #include <precomp.h>
extern uint8 *g_next_packet; extern uint8 *g_next_packet;

View file

@ -18,7 +18,7 @@
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/ */
#include "todo.h" #include <precomp.h>
#define MAX_CELL_SIZE 0x1000 /* pixels */ #define MAX_CELL_SIZE 0x1000 /* pixels */

View file

@ -18,7 +18,7 @@
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/ */
#include "todo.h" #include <precomp.h>
extern uint16 g_mcs_userid; extern uint16 g_mcs_userid;

View file

@ -19,7 +19,7 @@
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/ */
#include "todo.h" #include <precomp.h>
extern uint8 *g_next_packet; extern uint8 *g_next_packet;

View file

@ -1,5 +1,5 @@
#include "todo.h" #include <precomp.h>
#define NUM_SETTINGS 6 #define NUM_SETTINGS 6
LPWSTR lpSettings[NUM_SETTINGS] = LPWSTR lpSettings[NUM_SETTINGS] =

View file

@ -18,7 +18,7 @@
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/ */
#include "todo.h" #include <precomp.h>
//#include <openssl/rc4.h> //#include <openssl/rc4.h>
//#include <openssl/md5.h> //#include <openssl/md5.h>

View file

@ -20,7 +20,7 @@
*/ */
#include "todo.h" #include <precomp.h>
#define APP_CC #define APP_CC

View file

@ -19,7 +19,7 @@
*/ */
#include "todo.h" #include <precomp.h>
#ifdef _WIN32 #ifdef _WIN32
#define socklen_t int #define socklen_t int

View file

@ -18,7 +18,7 @@
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/ */
#include "todo.h" #include <precomp.h>
char g_username[256] = ""; char g_username[256] = "";
char g_hostname[256] = ""; char g_hostname[256] = "";

View file

@ -19,7 +19,7 @@
*/ */
#include <winsock2.h> /* winsock2.h first */ #include <winsock2.h> /* winsock2.h first */
#include "todo.h" #include <precomp.h>
extern char g_username[]; extern char g_username[];