Silence some warnings

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38064 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2006-03-14 01:40:05 +00:00
parent 5be7e07a3f
commit c099c54cba
2 changed files with 4 additions and 4 deletions

View File

@@ -11,7 +11,7 @@
#ifndef SCINTILLA_H
#define SCINTILLA_H
#if LCCWIN
#if defined(LCCWIN) && LCCWIN
typedef BOOL bool;
#endif
@@ -25,7 +25,7 @@ int Scintilla_LinkLexers();
// Here should be placed typedefs for uptr_t, an unsigned integer type large enough to
// hold a pointer and sptr_t, a signed integer large enough to hold a pointer.
// May need to be changed for 64 bit platforms.
#if _MSC_VER >= 1300
#if defined(_MSC_VER) && _MSC_VER >= 1300
#include <BaseTsd.h>
#endif
#ifdef MAXULONG_PTR

View File

@@ -11,7 +11,7 @@
#ifndef SCINTILLA_H
#define SCINTILLA_H
#if LCCWIN
#if defined(LCCWIN) && LCCWIN
typedef BOOL bool;
#endif
@@ -25,7 +25,7 @@ int Scintilla_LinkLexers();
// Here should be placed typedefs for uptr_t, an unsigned integer type large enough to
// hold a pointer and sptr_t, a signed integer large enough to hold a pointer.
// May need to be changed for 64 bit platforms.
#if _MSC_VER >= 1300
#if defined(_MSC_VER) && _MSC_VER >= 1300
#include <BaseTsd.h>
#endif
#ifdef MAXULONG_PTR