Changeset 184
- Timestamp:
- Dec 1, 2010, 3:30:14 AM (14 years ago)
- Location:
- trunk/openjdk/jdk/src/windows/native/sun/windows
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/openjdk/jdk/src/windows/native/sun/windows/WPrinterJob.cpp ¶
r2 r184 29 29 #include <limits.h> 30 30 #include <float.h> 31 #ifdef __WIN32OS2__ 32 #include <minivcrt.h> 33 #endif 31 34 32 35 #include "awt.h" … … 876 879 if (papers != NULL && 877 880 ::DeviceCapabilities(printerName, printerPort, 878 DC_PAPERS, papers, NULL) != -1) {881 DC_PAPERS, (LPTSTR)papers, NULL) != -1) { 879 882 int present = 0; 880 883 for (int i=0;i<numSizes;i++) { -
TabularUnified trunk/openjdk/jdk/src/windows/native/sun/windows/awt.h ¶
r2 r184 199 199 * NOTE: float.h must be defined if using these macros 200 200 */ 201 #ifdef __WIN32OS2__ 202 #define SAVE_CONTROLWORD 203 #define RESTORE_CONTROLWORD 204 #else 201 205 #define SAVE_CONTROLWORD \ 202 206 unsigned int fpu_cw = _CW_DEFAULT; \ … … 211 215 } \ 212 216 } 217 #endif 213 218 214 219 /* -
TabularUnified trunk/openjdk/jdk/src/windows/native/sun/windows/awt_Debug.h ¶
r181 r184 49 49 50 50 extern void * operator new(size_t size, const char * filename, int linenumber); 51 #ifdef __GNUC__ 52 inline void * operator new[](size_t size, const char * filename, int linenumber) 53 { 54 return operator new(size, filename, linenumber); 55 } 56 #endif 51 57 #if _MSC_VER >= 1200 52 58 /* VC 6.0 is more strict about enforcing matching placement new & delete */
Note:
See TracChangeset
for help on using the changeset viewer.