Changeset 184


Ignore:
Timestamp:
Dec 1, 2010, 3:30:14 AM (14 years ago)
Author:
dmik
Message:

jdk/awt: Continued.

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  
    2929#include <limits.h>
    3030#include <float.h>
     31#ifdef __WIN32OS2__
     32#include <minivcrt.h>
     33#endif
    3134
    3235#include "awt.h"
     
    876879          if (papers != NULL &&
    877880              ::DeviceCapabilities(printerName, printerPort,
    878                                    DC_PAPERS, papers, NULL) != -1) {
     881                                   DC_PAPERS, (LPTSTR)papers, NULL) != -1) {
    879882              int present = 0;
    880883              for (int i=0;i<numSizes;i++) {
  • TabularUnified trunk/openjdk/jdk/src/windows/native/sun/windows/awt.h

    r2 r184  
    199199 * NOTE: float.h must be defined if using these macros
    200200 */
     201#ifdef __WIN32OS2__
     202#define SAVE_CONTROLWORD
     203#define RESTORE_CONTROLWORD
     204#else
    201205#define SAVE_CONTROLWORD  \
    202206   unsigned int fpu_cw = _CW_DEFAULT;   \
     
    211215       }   \
    212216   }
     217#endif
    213218
    214219/*
  • TabularUnified trunk/openjdk/jdk/src/windows/native/sun/windows/awt_Debug.h

    r181 r184  
    4949
    5050    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
    5157#if _MSC_VER >= 1200
    5258    /* VC 6.0 is more strict about enforcing matching placement new & delete */
Note: See TracChangeset for help on using the changeset viewer.