wrap #include <windows.h> with #ifdef XP_WIN (for unix builds)

git-svn-id: svn://10.0.0.236/trunk@30023 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
hshaw%netscape.com
1999-05-04 00:31:40 +00:00
parent cb4086f7a8
commit 6c8eb16f9c
4 changed files with 6 additions and 3 deletions

View File

@@ -23,7 +23,7 @@
#include <stdio.h>
#include <assert.h>
#ifdef XP_PC
#ifdef XP_WIN
#include <windows.h>
#endif

View File

@@ -17,7 +17,7 @@
*/
#include <stdio.h>
#ifdef XP_PC
#ifdef XP_WIN
#include <windows.h>
#endif

View File

@@ -16,7 +16,10 @@
* Reserved.
*/
#include "stdio.h"
#ifdef XP_WIN
#include <windows.h>
#endif
#include "nscore.h"
#include "nsXPComCIID.h"

View File

@@ -19,7 +19,7 @@
#include <stdio.h>
#include <assert.h>
#ifdef XP_PC
#ifdef XP_WIN
#include <windows.h>
#endif