Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFelipe Heidrich2011-10-11 20:16:54 +0000
committerFelipe Heidrich2011-10-11 20:16:54 +0000
commit7ba9ff13be9d15c49c8f2872e0ff542758b4bc5e (patch)
tree7838748d8874a10d74aa31052da7222c5bc3176a
parentdd68464e07d5cea843b48822a51f9e4342c9a154 (diff)
downloadeclipse.platform.swt-7ba9ff13be9d15c49c8f2872e0ff542758b4bc5e.tar.gz
eclipse.platform.swt-7ba9ff13be9d15c49c8f2872e0ff542758b4bc5e.tar.xz
eclipse.platform.swt-7ba9ff13be9d15c49c8f2872e0ff542758b4bc5e.zip
fix wince
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/win32/library/os.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/win32/library/os.h b/bundles/org.eclipse.swt/Eclipse SWT PI/win32/library/os.h
index b7bb630401..decc12b8a7 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/win32/library/os.h
+++ b/bundles/org.eclipse.swt/Eclipse SWT PI/win32/library/os.h
@@ -74,6 +74,7 @@
#define NO_DEVMODEW
#define NO_DOCINFO
#define NO_DWM_BLURBEHIND
+#define NO_DTTOPTS
#define NO_EMR
#define NO_EMREXTCREATEFONTINDIRECTW
#define NO_EXTLOGFONTW
@@ -244,9 +245,11 @@
#define NO_DrawThemeIcon
#define NO_DrawThemeParentBackground
#define NO_DrawThemeText
+#define NO_DrawThemeTextEx
#define NO_DuplicateHandle
#define NO_DwmEnableBlurBehindWindow
#define NO_DwmExtendFrameIntoClientArea
+#define NO_DTTOPTS_1sizeof
#define NO_EnableScrollBar
#define NO_EndBufferedPaint
#define NO_EndDoc
@@ -712,6 +715,7 @@ typedef struct _DWM_BLURBEHIND {
} DWM_BLURBEHIND, *PDWM_BLURBEHIND;
#endif
+#ifndef _WIN32_WCE
#ifndef DTT_CALLBACK_PROC
typedef
int
@@ -745,6 +749,7 @@ typedef struct _DTTOPTS
LPARAM lParam;
} DTTOPTS, *PDTTOPTS;
#endif
+#endif /* _WIN32_WCE */
#if (_WIN32_IE <= 0x0600)

Back to the top