Changeset 181
- Timestamp:
- Nov 26, 2010, 8:03:20 PM (15 years ago)
- Location:
- trunk/openjdk/jdk/src
- Files:
-
- 15 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/openjdk/jdk/src/share/native/sun/awt/medialib/mlib_types.h
r2 r181 63 63 #include <stdint.h> /* for uintptr_t */ 64 64 #include <malloc.h> /* for ptrdiff_t */ 65 #elif defined(OS2) 66 #include <sys/types.h> /* for uintptr_t */ 67 #include <stddef.h> /* for ptrdiff_t */ 65 68 #else 66 69 #include <link.h> /* for uintptr_t */ -
trunk/openjdk/jdk/src/share/native/sun/java2d/opengl/J2D_GL/gl.h
r2 r181 105 105 * glut.h or gl.h. 106 106 */ 107 #if defined(_WIN32) && !defined(APIENTRY) && !defined(__CYGWIN__)107 #if (defined(_WIN32) && !defined(APIENTRY) && !defined(__CYGWIN__)) || defined(__WIN32OS2__) 108 108 #define WIN32_LEAN_AND_MEAN 1 109 109 #include <windows.h> -
trunk/openjdk/jdk/src/windows/native/sun/java2d/opengl/J2D_GL/wglext.h
r2 r181 58 58 */ 59 59 60 #if defined(_WIN32) && !defined(APIENTRY) && !defined(__CYGWIN__)60 #if (defined(_WIN32) && !defined(APIENTRY) && !defined(__CYGWIN__)) || defined(__WIN32OS2__) 61 61 #define WIN32_LEAN_AND_MEAN 1 62 62 #include <windows.h> -
trunk/openjdk/jdk/src/windows/native/sun/java2d/windows/RegistryKey.h
r2 r181 70 70 }; 71 71 72 #endif REGISTRYKEY_H72 #endif // REGISTRYKEY_H -
trunk/openjdk/jdk/src/windows/native/sun/java2d/windows/Win32SurfaceData.h
r2 r181 301 301 302 302 303 #endif _WIN32SURFACEDATA_H_303 #endif // _WIN32SURFACEDATA_H_ -
trunk/openjdk/jdk/src/windows/native/sun/java2d/windows/dxCapabilities.h
r2 r181 65 65 }; 66 66 67 #endif DX_CAPABILITIES_H67 #endif // DX_CAPABILITIES_H -
trunk/openjdk/jdk/src/windows/native/sun/windows/Devices.h
r2 r181 55 55 InstanceAccess* operator&(); 56 56 }; 57 friend 57 friend class InstanceAccess; 58 58 59 59 private: … … 71 71 }; 72 72 73 #endif _DEVICES_H_73 #endif // _DEVICES_H_ -
trunk/openjdk/jdk/src/windows/native/sun/windows/alloc.h
r2 r181 38 38 class awt_toolkit_shutdown {}; 39 39 40 #ifndef __WIN32OS2__ 40 41 // Disable "C++ Exception Specification ignored" warnings. 41 42 // These warnings are generated because VC++ 5.0 allows, but does not enforce, … … 43 44 // is updated to enforce exception specifications. 44 45 #pragma warning(disable : 4290) 46 #endif 45 47 46 48 #ifdef TRY -
trunk/openjdk/jdk/src/windows/native/sun/windows/awt_Component.h
r2 r181 448 448 static void JavaKeyToWindowsKey(UINT javaKey, UINT *windowsKey, UINT *modifiers, UINT originalWindowsKey); 449 449 450 INLINE static void AwtComponent::JavaKeyToWindowsKey(UINT javaKey,450 INLINE static void JavaKeyToWindowsKey(UINT javaKey, 451 451 UINT *windowsKey, UINT *modifiers) 452 452 { -
trunk/openjdk/jdk/src/windows/native/sun/windows/awt_Debug.h
r2 r181 69 69 70 70 /* Disable inlining. */ 71 #ifdef INLINE 72 #undef INLINE 73 #endif 71 74 #define INLINE 72 75 #else … … 84 87 85 88 /* Enable inlining. */ 89 #ifdef INLINE 90 #undef INLINE 91 #endif 86 92 #define INLINE inline 87 93 #endif // DEBUG -
trunk/openjdk/jdk/src/windows/native/sun/windows/awt_MenuItem.h
r2 r181 79 79 virtual LPCTSTR GetClassName(); 80 80 81 void AwtMenuItem::LinkObjects(jobject peer);81 void LinkObjects(jobject peer); 82 82 static AwtMenuItem* Create(jobject self, jobject menu); 83 83 -
trunk/openjdk/jdk/src/windows/native/sun/windows/awt_Palette.h
r2 r181 108 108 109 109 110 #endif AWT_PALETTE_H110 #endif // AWT_PALETTE_H -
trunk/openjdk/jdk/src/windows/native/sun/windows/awt_PrintDialog.h
r2 r181 36 36 class AwtPrintDialog { 37 37 public: 38 static jfieldID AwtPrintDialog::controlID;39 static jfieldID AwtPrintDialog::parentID;40 static jfieldID AwtPrintDialog::pageID;41 static jmethodID AwtPrintDialog::setHWndMID;38 static jfieldID controlID; 39 static jfieldID parentID; 40 static jfieldID pageID; 41 static jmethodID setHWndMID; 42 42 43 43 static BOOL PrintDlg(LPPRINTDLG); -
trunk/openjdk/jdk/src/windows/native/sun/windows/awt_Toolkit.h
r2 r181 107 107 const CriticalSection& critSec; 108 108 }; 109 friend Lock;109 friend class Lock; 110 110 111 111 private: -
trunk/openjdk/jdk/src/windows/native/sun/windows/awt_Win32GraphicsDevice.h
r2 r181 116 116 }; 117 117 118 #endif AWT_WIN32GRAPHICSDEVICE_H118 #endif // AWT_WIN32GRAPHICSDEVICE_H
Note:
See TracChangeset
for help on using the changeset viewer.