summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSilenio Quarti <silenio>2004-05-28 14:57:10 +0000
committerSilenio Quarti <silenio>2004-05-28 14:57:10 +0000
commit966e156ab773184b0dc0663f86e482af291e3020 (patch)
tree91adf2f954fa5125e5c02859c744285a60de52ec
parenta495e54ad57f77620111abc0a422692d1f6589ef (diff)
downloadeclipse.platform.swt-966e156ab773184b0dc0663f86e482af291e3020.tar.gz
eclipse.platform.swt-966e156ab773184b0dc0663f86e482af291e3020.tar.xz
eclipse.platform.swt-966e156ab773184b0dc0663f86e482af291e3020.zip
*** empty log message ***
-rw-r--r--bundles/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/org.eclipse.swt.internal.carbon.OS.properties29
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/carbon/library/os.c102
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/carbon/library/os_stats.c11
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/carbon/library/os_stats.h1259
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/carbon/org/eclipse/swt/internal/carbon/OS.java9
5 files changed, 782 insertions, 628 deletions
diff --git a/bundles/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/org.eclipse.swt.internal.carbon.OS.properties b/bundles/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/org.eclipse.swt.internal.carbon.OS.properties
index 9aa51835e3..e4d911b5e3 100644
--- a/bundles/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/org.eclipse.swt.internal.carbon.OS.properties
+++ b/bundles/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/org.eclipse.swt.internal.carbon.OS.properties
@@ -870,12 +870,27 @@ OS_CGDataProviderCreateWithData_3=cast=(void *)
OS_CGDataProviderRelease=
OS_CGDataProviderRelease_0=cast=(CGDataProviderRef)
+OS_CGDisplayBitsPerPixel=
+OS_CGDisplayBitsPerPixel_0=cast=(CGDirectDisplayID)
+
+OS_CGDisplayBitsPerSample=
+OS_CGDisplayBitsPerSample_0=cast=(CGDirectDisplayID)
+
+OS_CGDisplayBytesPerRow=
+OS_CGDisplayBytesPerRow_0=cast=(CGDirectDisplayID)
+
OS_CGFontCreateWithPlatformFont=
OS_CGFontCreateWithPlatformFont_0=
OS_CGFontRelease=
OS_CGFontRelease_0=cast=(CGFontRef)
+OS_CGGetDisplaysWithRect=
+OS_CGGetDisplaysWithRect_0=flags=struct
+OS_CGGetDisplaysWithRect_1=cast=CGDisplayCount
+OS_CGGetDisplaysWithRect_2=cast=(CGDirectDisplayID *)
+OS_CGGetDisplaysWithRect_3=cast=CGDisplayCount *
+
OS_CGImageCreate=
OS_CGImageCreate_0=cast=(size_t)
OS_CGImageCreate_1=cast=(size_t)
@@ -1646,6 +1661,10 @@ OS_GetDataBrowserSelectionFlags=
OS_GetDataBrowserSelectionFlags_0=cast=(ControlRef)
OS_GetDataBrowserSelectionFlags_1=
+OS_GetDataBrowserSortProperty=
+OS_GetDataBrowserSortProperty_0=cast=(ControlRef)
+OS_GetDataBrowserSortProperty_1=
+
OS_GetDataBrowserTableViewColumnPosition=
OS_GetDataBrowserTableViewColumnPosition_0=cast=(ControlRef)
OS_GetDataBrowserTableViewColumnPosition_1=cast=(DataBrowserTableViewColumnID)
@@ -2127,6 +2146,12 @@ OS_HIViewConvertPoint_0=cast=(HIPoint *)
OS_HIViewConvertPoint_1=cast=(HIViewRef)
OS_HIViewConvertPoint_2=cast=(HIViewRef)
+OS_HIViewCreateOffscreenImage=
+OS_HIViewCreateOffscreenImage_0=cast=HIViewRef
+OS_HIViewCreateOffscreenImage_1=cast=OptionBits
+OS_HIViewCreateOffscreenImage_2=cast=(HIRect *)
+OS_HIViewCreateOffscreenImage_3=cast=CGImageRef *
+
OS_HIViewFindByID=
OS_HIViewFindByID_0=cast=(HIViewRef)
OS_HIViewFindByID_1=cast=(HIViewID *),flags=struct
@@ -3057,6 +3082,10 @@ OS_SetDataBrowserSelectionFlags=
OS_SetDataBrowserSelectionFlags_0=cast=(ControlRef)
OS_SetDataBrowserSelectionFlags_1=cast=(DataBrowserSelectionFlags)
+OS_SetDataBrowserSortOrder=
+OS_SetDataBrowserSortOrder_0=cast=(ControlRef)
+OS_SetDataBrowserSortOrder_1=
+
OS_SetDataBrowserTableViewColumnPosition=
OS_SetDataBrowserTableViewColumnPosition_0=cast=(ControlRef)
OS_SetDataBrowserTableViewColumnPosition_1=
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/carbon/library/os.c b/bundles/org.eclipse.swt/Eclipse SWT PI/carbon/library/os.c
index 7343124115..469822f852 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/carbon/library/os.c
+++ b/bundles/org.eclipse.swt/Eclipse SWT PI/carbon/library/os.c
@@ -1457,6 +1457,42 @@ JNIEXPORT void JNICALL OS_NATIVE(CGDataProviderRelease)
}
#endif
+#ifndef NO_CGDisplayBitsPerPixel
+JNIEXPORT jint JNICALL OS_NATIVE(CGDisplayBitsPerPixel)
+ (JNIEnv *env, jclass that, jint arg0)
+{
+ jint rc;
+ OS_NATIVE_ENTER(env, that, CGDisplayBitsPerPixel_FUNC);
+ rc = (jint)CGDisplayBitsPerPixel((CGDirectDisplayID)arg0);
+ OS_NATIVE_EXIT(env, that, CGDisplayBitsPerPixel_FUNC);
+ return rc;
+}
+#endif
+
+#ifndef NO_CGDisplayBitsPerSample
+JNIEXPORT jint JNICALL OS_NATIVE(CGDisplayBitsPerSample)
+ (JNIEnv *env, jclass that, jint arg0)
+{
+ jint rc;
+ OS_NATIVE_ENTER(env, that, CGDisplayBitsPerSample_FUNC);
+ rc = (jint)CGDisplayBitsPerSample((CGDirectDisplayID)arg0);
+ OS_NATIVE_EXIT(env, that, CGDisplayBitsPerSample_FUNC);
+ return rc;
+}
+#endif
+
+#ifndef NO_CGDisplayBytesPerRow
+JNIEXPORT jint JNICALL OS_NATIVE(CGDisplayBytesPerRow)
+ (JNIEnv *env, jclass that, jint arg0)
+{
+ jint rc;
+ OS_NATIVE_ENTER(env, that, CGDisplayBytesPerRow_FUNC);
+ rc = (jint)CGDisplayBytesPerRow((CGDirectDisplayID)arg0);
+ OS_NATIVE_EXIT(env, that, CGDisplayBytesPerRow_FUNC);
+ return rc;
+}
+#endif
+
#ifndef NO_CGFontCreateWithPlatformFont
JNIEXPORT jint JNICALL OS_NATIVE(CGFontCreateWithPlatformFont)
(JNIEnv *env, jclass that, jintArray arg0)
@@ -1482,6 +1518,27 @@ JNIEXPORT void JNICALL OS_NATIVE(CGFontRelease)
}
#endif
+#ifndef NO_CGGetDisplaysWithRect
+JNIEXPORT jint JNICALL OS_NATIVE(CGGetDisplaysWithRect)
+ (JNIEnv *env, jclass that, jobject arg0, jint arg1, jintArray arg2, jintArray arg3)
+{
+ CGRect _arg0, *lparg0=NULL;
+ jint *lparg2=NULL;
+ jint *lparg3=NULL;
+ jint rc;
+ OS_NATIVE_ENTER(env, that, CGGetDisplaysWithRect_FUNC);
+ if (arg0) lparg0 = getCGRectFields(env, arg0, &_arg0);
+ if (arg2) lparg2 = (*env)->GetIntArrayElements(env, arg2, NULL);
+ if (arg3) lparg3 = (*env)->GetIntArrayElements(env, arg3, NULL);
+ rc = (jint)CGGetDisplaysWithRect(*lparg0, (CGDisplayCount)arg1, (CGDirectDisplayID *)lparg2, (CGDisplayCount *)lparg3);
+ if (arg3) (*env)->ReleaseIntArrayElements(env, arg3, lparg3, 0);
+ if (arg2) (*env)->ReleaseIntArrayElements(env, arg2, lparg2, 0);
+ if (arg0) setCGRectFields(env, arg0, lparg0);
+ OS_NATIVE_EXIT(env, that, CGGetDisplaysWithRect_FUNC);
+ return rc;
+}
+#endif
+
#ifndef NO_CGImageCreate
JNIEXPORT jint JNICALL OS_NATIVE(CGImageCreate)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3, jint arg4, jint arg5, jint arg6, jint arg7, jfloatArray arg8, jboolean arg9, jint arg10)
@@ -3840,6 +3897,21 @@ JNIEXPORT jint JNICALL OS_NATIVE(GetDataBrowserSelectionFlags)
}
#endif
+#ifndef NO_GetDataBrowserSortProperty
+JNIEXPORT jint JNICALL OS_NATIVE(GetDataBrowserSortProperty)
+ (JNIEnv *env, jclass that, jint arg0, jintArray arg1)
+{
+ jint *lparg1=NULL;
+ jint rc;
+ OS_NATIVE_ENTER(env, that, GetDataBrowserSortProperty_FUNC);
+ if (arg1) lparg1 = (*env)->GetIntArrayElements(env, arg1, NULL);
+ rc = (jint)GetDataBrowserSortProperty((ControlRef)arg0, lparg1);
+ if (arg1) (*env)->ReleaseIntArrayElements(env, arg1, lparg1, 0);
+ OS_NATIVE_EXIT(env, that, GetDataBrowserSortProperty_FUNC);
+ return rc;
+}
+#endif
+
#ifndef NO_GetDataBrowserTableViewColumnPosition
JNIEXPORT jint JNICALL OS_NATIVE(GetDataBrowserTableViewColumnPosition)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jintArray arg2)
@@ -5379,6 +5451,24 @@ JNIEXPORT jint JNICALL OS_NATIVE(HIViewConvertPoint)
}
#endif
+#ifndef NO_HIViewCreateOffscreenImage
+JNIEXPORT jint JNICALL OS_NATIVE(HIViewCreateOffscreenImage)
+ (JNIEnv *env, jclass that, jint arg0, jint arg1, jobject arg2, jintArray arg3)
+{
+ CGRect _arg2, *lparg2=NULL;
+ jint *lparg3=NULL;
+ jint rc;
+ OS_NATIVE_ENTER(env, that, HIViewCreateOffscreenImage_FUNC);
+ if (arg2) lparg2 = getCGRectFields(env, arg2, &_arg2);
+ if (arg3) lparg3 = (*env)->GetIntArrayElements(env, arg3, NULL);
+ rc = (jint)HIViewCreateOffscreenImage((HIViewRef)arg0, (OptionBits)arg1, (HIRect *)lparg2, (CGImageRef *)lparg3);
+ if (arg3) (*env)->ReleaseIntArrayElements(env, arg3, lparg3, 0);
+ if (arg2) setCGRectFields(env, arg2, lparg2);
+ OS_NATIVE_EXIT(env, that, HIViewCreateOffscreenImage_FUNC);
+ return rc;
+}
+#endif
+
#ifndef NO_HIViewFindByID
JNIEXPORT jint JNICALL OS_NATIVE(HIViewFindByID)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jintArray arg2)
@@ -8239,6 +8329,18 @@ JNIEXPORT jint JNICALL OS_NATIVE(SetDataBrowserSelectionFlags)
}
#endif
+#ifndef NO_SetDataBrowserSortOrder
+JNIEXPORT jint JNICALL OS_NATIVE(SetDataBrowserSortOrder)
+ (JNIEnv *env, jclass that, jint arg0, jshort arg1)
+{
+ jint rc;
+ OS_NATIVE_ENTER(env, that, SetDataBrowserSortOrder_FUNC);
+ rc = (jint)SetDataBrowserSortOrder((ControlRef)arg0, arg1);
+ OS_NATIVE_EXIT(env, that, SetDataBrowserSortOrder_FUNC);
+ return rc;
+}
+#endif
+
#ifndef NO_SetDataBrowserTableViewColumnPosition
JNIEXPORT jint JNICALL OS_NATIVE(SetDataBrowserTableViewColumnPosition)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2)
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/carbon/library/os_stats.c b/bundles/org.eclipse.swt/Eclipse SWT PI/carbon/library/os_stats.c
index 354bf12add..1b567fca4e 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/carbon/library/os_stats.c
+++ b/bundles/org.eclipse.swt/Eclipse SWT PI/carbon/library/os_stats.c
@@ -14,8 +14,8 @@
#ifdef NATIVE_STATS
-int OS_nativeFunctionCount = 736;
-int OS_nativeFunctionCallCount[736];
+int OS_nativeFunctionCount = 743;
+int OS_nativeFunctionCallCount[743];
char * OS_nativeFunctionNames[] = {
"AECountItems",
"AEGetNthPtr",
@@ -127,8 +127,12 @@ char * OS_nativeFunctionNames[] = {
"CGContextTranslateCTM",
"CGDataProviderCreateWithData",
"CGDataProviderRelease",
+ "CGDisplayBitsPerPixel",
+ "CGDisplayBitsPerSample",
+ "CGDisplayBytesPerRow",
"CGFontCreateWithPlatformFont",
"CGFontRelease",
+ "CGGetDisplaysWithRect",
"CGImageCreate",
"CGImageGetAlphaInfo",
"CGImageGetBitsPerComponent",
@@ -295,6 +299,7 @@ char * OS_nativeFunctionNames[] = {
"GetDataBrowserScrollPosition",
"GetDataBrowserSelectionAnchor",
"GetDataBrowserSelectionFlags",
+ "GetDataBrowserSortProperty",
"GetDataBrowserTableViewColumnPosition",
"GetDataBrowserTableViewItemID",
"GetDataBrowserTableViewItemRow",
@@ -400,6 +405,7 @@ char * OS_nativeFunctionNames[] = {
"HIViewAddSubview",
"HIViewClick",
"HIViewConvertPoint",
+ "HIViewCreateOffscreenImage",
"HIViewFindByID",
"HIViewGetFirstSubview",
"HIViewGetFrame",
@@ -620,6 +626,7 @@ char * OS_nativeFunctionNames[] = {
"SetDataBrowserScrollPosition",
"SetDataBrowserSelectedItems",
"SetDataBrowserSelectionFlags",
+ "SetDataBrowserSortOrder",
"SetDataBrowserTableViewColumnPosition",
"SetDataBrowserTableViewHiliteStyle",
"SetDataBrowserTableViewItemRow",
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/carbon/library/os_stats.h b/bundles/org.eclipse.swt/Eclipse SWT PI/carbon/library/os_stats.h
index 3bc69657a0..62c35da051 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/carbon/library/os_stats.h
+++ b/bundles/org.eclipse.swt/Eclipse SWT PI/carbon/library/os_stats.h
@@ -129,629 +129,636 @@ char* OS_nativeFunctionNames[];
#define CGContextTranslateCTM_FUNC 107
#define CGDataProviderCreateWithData_FUNC 108
#define CGDataProviderRelease_FUNC 109
-#define CGFontCreateWithPlatformFont_FUNC 110
-#define CGFontRelease_FUNC 111
-#define CGImageCreate_FUNC 112
-#define CGImageGetAlphaInfo_FUNC 113
-#define CGImageGetBitsPerComponent_FUNC 114
-#define CGImageGetBitsPerPixel_FUNC 115
-#define CGImageGetBytesPerRow_FUNC 116
-#define CGImageGetColorSpace_FUNC 117
-#define CGImageGetHeight_FUNC 118
-#define CGImageGetWidth_FUNC 119
-#define CGImageRelease_FUNC 120
-#define CGPostKeyboardEvent_FUNC 121
-#define CGPostMouseEvent_FUNC 122
-#define CGWarpMouseCursorPosition_FUNC 123
-#define CallNextEventHandler_FUNC 124
-#define CharWidth_FUNC 125
-#define ClearCurrentScrap_FUNC 126
-#define ClearKeyboardFocus_FUNC 127
-#define ClearMenuBar_FUNC 128
-#define ClipCGContextToRegion_FUNC 129
-#define CloseDataBrowserContainer_FUNC 130
-#define ClosePoly_FUNC 131
-#define CloseRgn_FUNC 132
-#define CollapseWindow_FUNC 133
-#define ConvertEventRefToEventRecord_FUNC 134
-#define ConvertFromPStringToUnicode_FUNC 135
-#define ConvertFromUnicodeToPString_FUNC 136
-#define CopyBits_FUNC 137
-#define CopyControlTitleAsCFString_FUNC 138
-#define CopyDeepMask_FUNC 139
-#define CopyMenuItemTextAsCFString_FUNC 140
-#define CopyRgn_FUNC 141
-#define CountDragItemFlavors_FUNC 142
-#define CountDragItems_FUNC 143
-#define CountMenuItems_FUNC 144
-#define CountSubControls_FUNC 145
-#define CreateBevelButtonControl_FUNC 146
-#define CreateCGContextForPort_FUNC 147
-#define CreateCheckBoxControl_FUNC 148
-#define CreateDataBrowserControl_FUNC 149
-#define CreateEditUnicodeTextControl_FUNC 150
-#define CreateEvent_FUNC 151
-#define CreateGroupBoxControl_FUNC 152
-#define CreateIconControl_FUNC 153
-#define CreateNewMenu_FUNC 154
-#define CreateNewWindow_FUNC 155
-#define CreatePopupArrowControl_FUNC 156
-#define CreatePopupButtonControl_FUNC 157
-#define CreateProgressBarControl_FUNC 158
-#define CreatePushButtonControl_FUNC 159
-#define CreatePushButtonWithIconControl_FUNC 160
-#define CreateRadioButtonControl_FUNC 161
-#define CreateRootControl_FUNC 162
-#define CreateScrollBarControl_FUNC 163
-#define CreateSeparatorControl_FUNC 164
-#define CreateSliderControl_FUNC 165
-#define CreateStandardAlert_FUNC 166
-#define CreateStaticTextControl_FUNC 167
-#define CreateTabsControl_FUNC 168
-#define CreateTextToUnicodeInfoByEncoding_FUNC 169
-#define CreateUnicodeToTextInfoByEncoding_FUNC 170
-#define CreateUserPaneControl_FUNC 171
-#define CreateWindowGroup_FUNC 172
-#define DMGetFirstScreenDevice_FUNC 173
-#define DMGetNextScreenDevice_FUNC 174
-#define DeleteMenu_FUNC 175
-#define DeleteMenuItem_FUNC 176
-#define DeleteMenuItems_FUNC 177
-#define DiffRgn_FUNC 178
-#define DisableControl_FUNC 179
-#define DisableMenuCommand_FUNC 180
-#define DisableMenuItem_FUNC 181
-#define DisposeControl_FUNC 182
-#define DisposeDrag_FUNC 183
-#define DisposeGWorld_FUNC 184
-#define DisposeHandle_FUNC 185
-#define DisposeMenu_FUNC 186
-#define DisposePtr_FUNC 187
-#define DisposeRgn_FUNC 188
-#define DisposeTextToUnicodeInfo_FUNC 189
-#define DisposeUnicodeToTextInfo_FUNC 190
-#define DisposeWindow_FUNC 191
-#define DrawControlInCurrentPort_FUNC 192
-#define DrawMenuBar_FUNC 193
-#define DrawText_FUNC 194
-#define DrawThemeButton_FUNC 195
-#define DrawThemeEditTextFrame_FUNC 196
-#define DrawThemeFocusRect_FUNC 197
-#define DrawThemePopupArrow_FUNC 198
-#define DrawThemeSeparator_FUNC 199
-#define DrawThemeTextBox_FUNC 200
-#define EmbedControl_FUNC 201
-#define EmptyRect_FUNC 202
-#define EmptyRgn_FUNC 203
-#define EnableControl_FUNC 204
-#define EnableMenuCommand_FUNC 205
-#define EnableMenuItem_FUNC 206
-#define EndUpdate_FUNC 207
-#define EqualRect_FUNC 208
-#define EraseRect_FUNC 209
-#define EraseRgn_FUNC 210
-#define FMCreateFontFamilyInstanceIterator_FUNC 211
-#define FMCreateFontFamilyIterator_FUNC 212
-#define FMDisposeFontFamilyInstanceIterator_FUNC 213
-#define FMDisposeFontFamilyIterator_FUNC 214
-#define FMGetATSFontRefFromFont_FUNC 215
-#define FMGetFontFamilyFromName_FUNC 216
-#define FMGetFontFamilyInstanceFromFont_FUNC 217
-#define FMGetFontFamilyName_FUNC 218
-#define FMGetFontFromFontFamilyInstance_FUNC 219
-#define FMGetNextFontFamily_FUNC 220
-#define FMGetNextFontFamilyInstance_FUNC 221
-#define FPIsFontPanelVisible_FUNC 222
-#define FPShowHideFontPanel_FUNC 223
-#define FSGetCatalogInfo_FUNC 224
-#define FSpGetFInfo_FUNC 225
-#define FSpMakeFSRef_FUNC 226
-#define FetchFontInfo_FUNC 227
-#define FindWindow_FUNC 228
-#define Fix2Long_FUNC 229
-#define FrameOval_FUNC 230
-#define FramePoly_FUNC 231
-#define FrameRect_FUNC 232
-#define FrameRoundRect_FUNC 233
-#define FrontWindow_FUNC 234
-#define Gestalt_FUNC 235
-#define GetAppFont_FUNC 236
-#define GetApplicationEventTarget_FUNC 237
-#define GetAvailableWindowAttributes_FUNC 238
-#define GetAvailableWindowPositioningBounds_FUNC 239
-#define GetBestControlRect_FUNC 240
-#define GetCaretTime_FUNC 241
-#define GetClip_FUNC 242
-#define GetControl32BitMaximum_FUNC 243
-#define GetControl32BitMinimum_FUNC 244
-#define GetControl32BitValue_FUNC 245
-#define GetControlBounds_FUNC 246
-#define GetControlData__ISIILorg_eclipse_swt_internal_carbon_ControlFontStyleRec_2_3I_FUNC 247
-#define GetControlData__ISIILorg_eclipse_swt_internal_carbon_Rect_2_3I_FUNC 248
-#define GetControlData__ISII_3B_3I_FUNC 249
-#define GetControlData__ISII_3I_3I_FUNC 250
-#define GetControlData__ISII_3S_3I_FUNC 251
-#define GetControlEventTarget_FUNC 252
-#define GetControlFeatures_FUNC 253
-#define GetControlOwner_FUNC 254
-#define GetControlProperty_FUNC 255
-#define GetControlReference_FUNC 256
-#define GetControlRegion_FUNC 257
-#define GetControlValue_FUNC 258
-#define GetControlViewSize_FUNC 259
-#define GetCurrentEventButtonState_FUNC 260
-#define GetCurrentEventKeyModifiers_FUNC 261
-#define GetCurrentEventLoop_FUNC 262
-#define GetCurrentEventQueue_FUNC 263
-#define GetCurrentProcess_FUNC 264
-#define GetCurrentScrap_FUNC 265
-#define GetDataBrowserCallbacks_FUNC 266
-#define GetDataBrowserItemCount_FUNC 267
-#define GetDataBrowserItemDataButtonValue_FUNC 268
-#define GetDataBrowserItemPartBounds_FUNC 269
-#define GetDataBrowserItemState_FUNC 270
-#define GetDataBrowserItems_FUNC 271
-#define GetDataBrowserListViewHeaderBtnHeight_FUNC 272
-#define GetDataBrowserListViewHeaderDesc_FUNC 273
-#define GetDataBrowserScrollBarInset_FUNC 274
-#define GetDataBrowserScrollPosition_FUNC 275
-#define GetDataBrowserSelectionAnchor_FUNC 276
-#define GetDataBrowserSelectionFlags_FUNC 277
-#define GetDataBrowserTableViewColumnPosition_FUNC 278
-#define GetDataBrowserTableViewItemID_FUNC 279
-#define GetDataBrowserTableViewItemRow_FUNC 280
-#define GetDataBrowserTableViewNamedColumnWidth_FUNC 281
-#define GetDataBrowserTableViewRowHeight_FUNC 282
-#define GetDblTime_FUNC 283
-#define GetDefFontSize_FUNC 284
-#define GetDeviceList_FUNC 285
-#define GetDragAllowableActions_FUNC 286
-#define GetDragDropAction_FUNC 287
-#define GetDragItemReferenceNumber_FUNC 288
-#define GetDragModifiers_FUNC 289
-#define GetDragMouse_FUNC 290
-#define GetEventClass_FUNC 291
-#define GetEventDispatcherTarget_FUNC 292
-#define GetEventKind_FUNC 293
-#define GetEventParameter__III_3II_3ILorg_eclipse_swt_internal_carbon_CGPoint_2_FUNC 294
-#define GetEventParameter__III_3II_3ILorg_eclipse_swt_internal_carbon_HICommand_2_FUNC 295
-#define GetEventParameter__III_3II_3ILorg_eclipse_swt_internal_carbon_Point_2_FUNC 296
-#define GetEventParameter__III_3II_3ILorg_eclipse_swt_internal_carbon_RGBColor_2_FUNC 297
-#define GetEventParameter__III_3II_3ILorg_eclipse_swt_internal_carbon_Rect_2_FUNC 298
-#define GetEventParameter__III_3II_3I_3B_FUNC 299
-#define GetEventParameter__III_3II_3I_3C_FUNC 300
-#define GetEventParameter__III_3II_3I_3I_FUNC 301
-#define GetEventParameter__III_3II_3I_3S_FUNC 302
-#define GetEventTime_FUNC 303
-#define GetFlavorData_FUNC 304
-#define GetFlavorDataSize_FUNC 305
-#define GetFlavorType_FUNC 306
-#define GetFontInfo_FUNC 307
-#define GetGDevice_FUNC 308
-#define GetGWorld_FUNC 309
-#define GetGlobalMouse_FUNC 310
-#define GetHandleSize_FUNC 311
-#define GetIconFamilyData_FUNC 312
-#define GetIconRef_FUNC 313
-#define GetIndMenuItemWithCommandID_FUNC 314
-#define GetIndexedSubControl_FUNC 315
-#define GetItemMark_FUNC 316
-#define GetKeyboardFocus_FUNC 317
-#define GetLastUserEventTime_FUNC 318
-#define GetMBarHeight_FUNC 319
-#define GetMainDevice_FUNC 320
-#define GetMainEventQueue_FUNC 321
-#define GetMenuCommandMark_FUNC 322
-#define GetMenuEventTarget_FUNC 323
-#define GetMenuFont_FUNC 324
-#define GetMenuHeight_FUNC 325
-#define GetMenuID_FUNC 326
-#define GetMenuItemCommandID_FUNC 327
-#define GetMenuItemHierarchicalMenu_FUNC 328
-#define GetMenuItemRefCon_FUNC 329
-#define GetMenuTrackingData_FUNC 330
-#define GetMenuWidth_FUNC 331
-#define GetMouse_FUNC 332
-#define GetNextDevice_FUNC 333
-#define GetPixBounds_FUNC 334
-#define GetPixDepth_FUNC 335
-#define GetPort_FUNC 336
-#define GetPortBitMapForCopyBits_FUNC 337
-#define GetPortBounds_FUNC 338
-#define GetPortClipRegion_FUNC 339
-#define GetPortVisibleRegion_FUNC 340
-#define GetPtrSize_FUNC 341
-#define GetRegionBounds_FUNC 342
-#define GetRootControl_FUNC 343
-#define GetScrapFlavorCount_FUNC 344
-#define GetScrapFlavorData_FUNC 345
-#define GetScrapFlavorInfoList_FUNC 346
-#define GetScrapFlavorSize_FUNC 347
-#define GetScriptManagerVariable_FUNC 348
-#define GetSuperControl_FUNC 349
-#define GetTabContentRect_FUNC 350
-#define GetThemeBrushAsColor_FUNC 351
-#define GetThemeDrawingState_FUNC 352
-#define GetThemeFont_FUNC 353
-#define GetThemeMenuItemExtra_FUNC 354
-#define GetThemeMetric_FUNC 355
-#define GetThemeTextColor_FUNC 356
-#define GetThemeTextDimensions_FUNC 357
-#define GetUserFocusEventTarget_FUNC 358
-#define GetUserFocusWindow_FUNC 359
-#define GetWRefCon_FUNC 360
-#define GetWindowActivationScope_FUNC 361
-#define GetWindowBounds_FUNC 362
-#define GetWindowDefaultButton_FUNC 363
-#define GetWindowEventTarget_FUNC 364
-#define GetWindowFromPort_FUNC 365
-#define GetWindowGroupOfClass_FUNC 366
-#define GetWindowModality_FUNC 367
-#define GetWindowPort_FUNC 368
-#define GetWindowRegion_FUNC 369
-#define GetWindowStructureWidths_FUNC 370
-#define HIComboBoxAppendTextItem_FUNC 371
-#define HIComboBoxCopyTextItemAtIndex_FUNC 372
-#define HIComboBoxCreate_FUNC 373
-#define HIComboBoxGetItemCount_FUNC 374
-#define HIComboBoxInsertTextItemAtIndex_FUNC 375
-#define HIComboBoxRemoveItemAtIndex_FUNC 376
-#define HIObjectCopyClassID_FUNC 377
-#define HIObjectCreate_FUNC 378
-#define HIObjectRegisterSubclass_FUNC 379
-#define HIViewAddSubview_FUNC 380
-#define HIViewClick_FUNC 381
-#define HIViewConvertPoint_FUNC 382
-#define HIViewFindByID_FUNC 383
-#define HIViewGetFirstSubview_FUNC 384
-#define HIViewGetFrame_FUNC 385
-#define HIViewGetLastSubview_FUNC 386
-#define HIViewGetNextView_FUNC 387
-#define HIViewGetRoot_FUNC 388
-#define HIViewGetSizeConstraints_FUNC 389
-#define HIViewGetSubviewHit_FUNC 390
-#define HIViewGetViewForMouseEvent_FUNC 391
-#define HIViewIsVisible_FUNC 392
-#define HIViewRemoveFromSuperview_FUNC 393
-#define HIViewSetBoundsOrigin_FUNC 394
-#define HIViewSetDrawingEnabled_FUNC 395
-#define HIViewSetFrame_FUNC 396
-#define HIViewSetNeedsDisplay_FUNC 397
-#define HIViewSetNeedsDisplayInRegion_FUNC 398
-#define HIViewSetVisible_FUNC 399
-#define HIViewSetZOrder_FUNC 400
-#define HIViewSimulateClick_FUNC 401
-#define HLock_FUNC 402
-#define HMGetTagDelay_FUNC 403
-#define HMHideTag_FUNC 404
-#define HMInstallControlContentCallback_FUNC 405
-#define HMSetTagDelay_FUNC 406
-#define HUnlock_FUNC 407
-#define HandleControlClick_FUNC 408
-#define HandleControlSetCursor_FUNC 409
-#define HiWord_FUNC 410
-#define HideWindow_FUNC 411
-#define HiliteMenu_FUNC 412
-#define IconRefToIconFamily_FUNC 413
-#define InitContextualMenus_FUNC 414
-#define InitCursor_FUNC 415
-#define InitDataBrowserCallbacks_FUNC 416
-#define InitDataBrowserCustomCallbacks_FUNC 417
-#define InsertMenu_FUNC 418
-#define InsertMenuItemTextWithCFString_FUNC 419
-#define InstallEventHandler_FUNC 420
-#define InstallEventLoopTimer_FUNC 421
-#define InstallReceiveHandler_FUNC 422
-#define InstallTrackingHandler_FUNC 423
-#define InvalWindowRect_FUNC 424
-#define InvalWindowRgn_FUNC 425
-#define InvertRect_FUNC 426
-#define InvertRgn_FUNC 427
-#define IsControlActive_FUNC 428
-#define IsControlEnabled_FUNC 429
-#define IsControlVisible_FUNC 430
-#define IsDataBrowserItemSelected_FUNC 431
-#define IsMenuCommandEnabled_FUNC 432
-#define IsMenuItemEnabled_FUNC 433
-#define IsValidControlHandle_FUNC 434
-#define IsValidMenu_FUNC 435
-#define IsValidWindowPtr_FUNC 436
-#define IsWindowActive_FUNC 437
-#define IsWindowCollapsed_FUNC 438
-#define IsWindowVisible_FUNC 439
-#define KeyTranslate_FUNC 440
-#define KillPoly_FUNC 441
-#define LineTo_FUNC 442
-#define LoWord_FUNC 443
-#define LockPortBits_FUNC 444
-#define Long2Fix_FUNC 445
-#define MenuSelect_FUNC 446
-#define MoveControl_FUNC 447
-#define MoveTo_FUNC 448
-#define MoveWindow_FUNC 449
-#define NavCreateChooseFolderDialog_FUNC 450
-#define NavCreateGetFileDialog_FUNC 451
-#define NavCreatePutFileDialog_FUNC 452
-#define NavDialogDispose_FUNC 453
-#define NavDialogGetReply_FUNC 454
-#define NavDialogGetSaveFileName_FUNC 455
-#define NavDialogGetUserAction_FUNC 456
-#define NavDialogRun_FUNC 457
-#define NavDialogSetSaveFileName_FUNC 458
-#define NavGetDefaultDialogCreationOptions_FUNC 459
-#define NewControl_FUNC 460
-#define NewDrag_FUNC 461
-#define NewGWorldFromPtr_FUNC 462
-#define NewHandle_FUNC 463
-#define NewHandleClear_FUNC 464
-#define NewPtr_FUNC 465
-#define NewPtrClear_FUNC 466
-#define NewRgn_FUNC 467
-#define OffsetRect_FUNC 468
-#define OffsetRgn_FUNC 469
-#define OpenDataBrowserContainer_FUNC 470
-#define OpenPoly_FUNC 471
-#define OpenRgn_FUNC 472
-#define PMCreatePageFormat_FUNC 473
-#define PMCreatePrintSettings_FUNC 474
-#define PMCreateSession_FUNC 475
-#define PMFlattenPageFormat_FUNC 476
-#define PMFlattenPrintSettings_FUNC 477
-#define PMGetAdjustedPageRect_FUNC 478
-#define PMGetAdjustedPaperRect_FUNC 479
-#define PMGetCollate_FUNC 480
-#define PMGetCopies_FUNC 481
-#define PMGetFirstPage_FUNC 482
-#define PMGetJobNameCFString_FUNC 483
-#define PMGetLastPage_FUNC 484
-#define PMGetPageRange_FUNC 485
-#define PMGetResolution_FUNC 486
-#define PMRelease_FUNC 487
-#define PMSessionBeginDocumentNoDialog_FUNC 488
-#define PMSessionBeginPageNoDialog_FUNC 489
-#define PMSessionCopyDestinationLocation_FUNC 490
-#define PMSessionCreatePrinterList_FUNC 491
-#define PMSessionDefaultPageFormat_FUNC 492
-#define PMSessionDefaultPrintSettings_FUNC 493
-#define PMSessionEndDocumentNoDialog_FUNC 494
-#define PMSessionEndPageNoDialog_FUNC 495
-#define PMSessionError_FUNC 496
-#define PMSessionGetDestinationType_FUNC 497
-#define PMSessionGetGraphicsContext_FUNC 498
-#define PMSessionPageSetupDialog_FUNC 499
-#define PMSessionPrintDialog_FUNC 500
-#define PMSessionSetCurrentPrinter_FUNC 501
-#define PMSessionSetDestination_FUNC 502
-#define PMSessionSetDocumentFormatGeneration_FUNC 503
-#define PMSessionSetError_FUNC 504
-#define PMSessionUseSheets_FUNC 505
-#define PMSessionValidatePageFormat_FUNC 506
-#define PMSessionValidatePrintSettings_FUNC 507
-#define PMSetCollate_FUNC 508
-#define PMSetFirstPage_FUNC 509
-#define PMSetJobNameCFString_FUNC 510
-#define PMSetLastPage_FUNC 511
-#define PMSetPageRange_FUNC 512
-#define PMUnflattenPageFormat_FUNC 513
-#define PMUnflattenPrintSettings_FUNC 514
-#define PaintOval_FUNC 515
-#define PaintPoly_FUNC 516
-#define PaintRect_FUNC 517
-#define PaintRoundRect_FUNC 518
-#define PenSize_FUNC 519
-#define PickColor_FUNC 520
-#define PopUpMenuSelect_FUNC 521
-#define PostEvent_FUNC 522
-#define PostEventToQueue_FUNC 523
-#define PtInRect_FUNC 524
-#define PtInRgn_FUNC 525
-#define PutScrapFlavor_FUNC 526
-#define QDBeginCGContext_FUNC 527
-#define QDEndCGContext_FUNC 528
-#define QDFlushPortBuffer_FUNC 529
-#define QDGlobalToLocalPoint_FUNC 530
-#define QDLocalToGlobalPoint_FUNC 531
-#define QDSetDirtyRegion_FUNC 532
-#define QDSetPatternOrigin_FUNC 533
-#define QDSwapTextFlags_FUNC 534
-#define RGBBackColor_FUNC 535
-#define RGBForeColor_FUNC 536
-#define ReceiveNextEvent_FUNC 537
-#define RectInRgn_FUNC 538
-#define RectRgn_FUNC 539
-#define RegisterAppearanceClient_FUNC 540
-#define ReleaseEvent_FUNC 541
-#define ReleaseIconRef_FUNC 542
-#define ReleaseMenu_FUNC 543
-#define ReleaseWindow_FUNC 544
-#define ReleaseWindowGroup_FUNC 545
-#define RemoveControlProperty_FUNC 546
-#define RemoveDataBrowserItems_FUNC 547
-#define RemoveDataBrowserTableViewColumn_FUNC 548
-#define RemoveEventHandler_FUNC 549
-#define RemoveEventLoopTimer_FUNC 550
-#define RemoveReceiveHandler_FUNC 551
-#define RemoveTrackingHandler_FUNC 552
-#define RepositionWindow_FUNC 553
-#define ReshapeCustomWindow_FUNC 554
-#define RetainEvent_FUNC 555
-#define RetainMenu_FUNC 556
-#define RetainWindow_FUNC 557
-#define RevealDataBrowserItem_FUNC 558
-#define RunStandardAlert_FUNC 559
-#define ScrollRect_FUNC 560
-#define SectRect_FUNC 561
-#define SectRgn_FUNC 562
-#define SelectWindow_FUNC 563
-#define SendBehind_FUNC 564
-#define SendEventToEventTarget_FUNC 565
-#define SetBevelButtonContentInfo_FUNC 566
-#define SetClip_FUNC 567
-#define SetControl32BitMaximum_FUNC 568
-#define SetControl32BitMinimum_FUNC 569
-#define SetControl32BitValue_FUNC 570
-#define SetControlAction_FUNC 571
-#define SetControlBounds_FUNC 572
-#define SetControlColorProc_FUNC 573
-#define SetControlData__IIIII_FUNC 574
-#define SetControlData__IIIILorg_eclipse_swt_internal_carbon_ControlButtonContentInfo_2_FUNC 575
-#define SetControlData__IIIILorg_eclipse_swt_internal_carbon_ControlTabInfoRecV1_2_FUNC 576
-#define SetControlData__IIIILorg_eclipse_swt_internal_carbon_Rect_2_FUNC 577
-#define SetControlData__IIII_3B_FUNC 578
-#define SetControlData__IIII_3I_FUNC 579
-#define SetControlData__IIII_3S_FUNC 580
-#define SetControlFontStyle_FUNC 581
-#define SetControlPopupMenuHandle_FUNC 582
-#define SetControlProperty_FUNC 583
-#define SetControlReference_FUNC 584
-#define SetControlTitleWithCFString_FUNC 585
-#define SetControlViewSize_FUNC 586
-#define SetControlVisibility_FUNC 587
-#define SetCursor_FUNC 588
-#define SetDataBrowserCallbacks_FUNC 589
-#define SetDataBrowserCustomCallbacks_FUNC 590
-#define SetDataBrowserHasScrollBars_FUNC 591
-#define SetDataBrowserItemDataBooleanValue_FUNC 592
-#define SetDataBrowserItemDataButtonValue_FUNC 593
-#define SetDataBrowserItemDataIcon_FUNC 594
-#define SetDataBrowserItemDataItemID_FUNC 595
-#define SetDataBrowserItemDataText_FUNC 596
-#define SetDataBrowserListViewDisclosureColumn_FUNC 597
-#define SetDataBrowserListViewHeaderBtnHeight_FUNC 598
-#define SetDataBrowserListViewHeaderDesc_FUNC 599
-#define SetDataBrowserScrollPosition_FUNC 600
-#define SetDataBrowserSelectedItems_FUNC 601
-#define SetDataBrowserSelectionFlags_FUNC 602
-#define SetDataBrowserTableViewColumnPosition_FUNC 603
-#define SetDataBrowserTableViewHiliteStyle_FUNC 604
-#define SetDataBrowserTableViewItemRow_FUNC 605
-#define SetDataBrowserTableViewNamedColumnWidth_FUNC 606
-#define SetDataBrowserTarget_FUNC 607
-#define SetDragAllowableActions_FUNC 608
-#define SetDragDropAction_FUNC 609
-#define SetDragInputProc_FUNC 610
-#define SetEventLoopTimerNextFireTime_FUNC 611
-#define SetEventParameter__IIII_3C_FUNC 612
-#define SetEventParameter__IIII_3S_FUNC 613
-#define SetFontInfoForSelection_FUNC 614
-#define SetFrontProcess_FUNC 615
-#define SetFrontProcessWithOptions_FUNC 616
-#define SetGWorld_FUNC 617
-#define SetItemMark_FUNC 618
-#define SetKeyboardFocus_FUNC 619
-#define SetMenuCommandMark_FUNC 620
-#define SetMenuFont_FUNC 621
-#define SetMenuItemCommandKey_FUNC 622
-#define SetMenuItemHierarchicalMenu_FUNC 623
-#define SetMenuItemIconHandle_FUNC 624
-#define SetMenuItemKeyGlyph_FUNC 625
-#define SetMenuItemModifiers_FUNC 626
-#define SetMenuItemRefCon_FUNC 627
-#define SetMenuItemTextWithCFString_FUNC 628
-#define SetMenuTitleWithCFString_FUNC 629
-#define SetOrigin_FUNC 630
-#define SetPort_FUNC 631
-#define SetPortBounds_FUNC 632
-#define SetPortWindowPort_FUNC 633
-#define SetPt_FUNC 634
-#define SetRect_FUNC 635
-#define SetRectRgn_FUNC 636
-#define SetRootMenu_FUNC 637
-#define SetThemeBackground_FUNC 638
-#define SetThemeCursor_FUNC 639
-#define SetThemeDrawingState_FUNC 640
-#define SetThemeTextColor_FUNC 641
-#define SetThemeWindowBackground_FUNC 642
-#define SetUpControlBackground_FUNC 643
-#define SetWRefCon_FUNC 644
-#define SetWindowActivationScope_FUNC 645
-#define SetWindowBounds_FUNC 646
-#define SetWindowDefaultButton_FUNC 647
-#define SetWindowGroup_FUNC 648
-#define SetWindowGroupOwner_FUNC 649
-#define SetWindowGroupParent_FUNC 650
-#define SetWindowModality_FUNC 651
-#define SetWindowTitleWithCFString_FUNC 652
-#define ShowWindow_FUNC 653
-#define SizeControl_FUNC 654
-#define SizeWindow_FUNC 655
-#define StillDown_FUNC 656
-#define SyncCGContextOriginWithPort_FUNC 657
-#define SysBeep_FUNC 658
-#define TXNActivate_FUNC 659
-#define TXNAdjustCursor_FUNC 660
-#define TXNClick_FUNC 661
-#define TXNCopy_FUNC 662
-#define TXNCut_FUNC 663
-#define TXNDataSize_FUNC 664
-#define TXNDeleteObject_FUNC 665
-#define TXNDraw_FUNC 666
-#define TXNEchoMode_FUNC 667
-#define TXNFocus_FUNC 668
-#define TXNGetData_FUNC 669
-#define TXNGetLineCount_FUNC 670
-#define TXNGetLineMetrics_FUNC 671
-#define TXNGetRectBounds_FUNC 672
-#define TXNGetSelection_FUNC 673
-#define TXNGetTXNObjectControls_FUNC 674
-#define TXNGetViewRect_FUNC 675
-#define TXNInitTextension_FUNC 676
-#define TXNNewObject_FUNC 677
-#define TXNOffsetToPoint_FUNC 678
-#define TXNPaste_FUNC 679
-#define TXNPointToOffset_FUNC 680
-#define TXNSelectAll_FUNC 681
-#define TXNSetBackground_FUNC 682
-#define TXNSetData_FUNC 683
-#define TXNSetFrameBounds_FUNC 684
-#define TXNSetRectBounds_FUNC 685
-#define TXNSetSelection_FUNC 686
-#define TXNSetTXNObjectControls_FUNC 687
-#define TXNSetTypeAttributes_FUNC 688
-#define TXNShowSelection_FUNC 689
-#define TestControl_FUNC 690
-#define TextFace_FUNC 691
-#define TextFont_FUNC 692
-#define TextMode_FUNC 693
-#define TextSize_FUNC 694
-#define TextWidth_FUNC 695
-#define TrackDrag_FUNC 696
-#define TrackMouseLocationWithOptions_FUNC 697
-#define UnionRect_FUNC 698
-#define UnionRgn_FUNC 699
-#define UnlockPortBits_FUNC 700
-#define UpdateControls_FUNC 701
-#define UpdateDataBrowserItems_FUNC 702
-#define UpgradeScriptInfoToTextEncoding_FUNC 703
-#define WaitMouseMoved_FUNC 704
-#define X2Fix_FUNC 705
-#define ZoomWindowIdeal_FUNC 706
-#define kHIViewWindowContentID_FUNC 707
-#define kPMDocumentFormatPDF_FUNC 708
-#define kPMGraphicsContextCoreGraphics_FUNC 709
-#define memcpy__III_FUNC 710
-#define memcpy__ILorg_eclipse_swt_internal_carbon_ATSUTab_2I_FUNC 711
-#define memcpy__ILorg_eclipse_swt_internal_carbon_BitMap_2I_FUNC 712
-#define memcpy__ILorg_eclipse_swt_internal_carbon_Cursor_2I_FUNC 713
-#define memcpy__ILorg_eclipse_swt_internal_carbon_EventRecord_2I_FUNC 714
-#define memcpy__ILorg_eclipse_swt_internal_carbon_FontSelectionQDStyle_2I_FUNC 715
-#define memcpy__ILorg_eclipse_swt_internal_carbon_HMHelpContentRec_2I_FUNC 716
-#define memcpy__ILorg_eclipse_swt_internal_carbon_PixMap_2I_FUNC 717
-#define memcpy__ILorg_eclipse_swt_internal_carbon_RGBColor_2I_FUNC 718
-#define memcpy__ILorg_eclipse_swt_internal_carbon_Rect_2I_FUNC 719
-#define memcpy__I_3BI_FUNC 720
-#define memcpy__I_3CI_FUNC 721
-#define memcpy__I_3II_FUNC 722
-#define memcpy__Lorg_eclipse_swt_internal_carbon_ATSTrapezoid_2II_FUNC 723
-#define memcpy__Lorg_eclipse_swt_internal_carbon_FontSelectionQDStyle_2II_FUNC 724
-#define memcpy__Lorg_eclipse_swt_internal_carbon_GDevice_2II_FUNC 725
-#define memcpy__Lorg_eclipse_swt_internal_carbon_HMHelpContentRec_2II_FUNC 726
-#define memcpy__Lorg_eclipse_swt_internal_carbon_PixMap_2II_FUNC 727
-#define memcpy__Lorg_eclipse_swt_internal_carbon_Rect_2II_FUNC 728
-#define memcpy___3BII_FUNC 729
-#define memcpy___3B_3CI_FUNC 730
-#define memcpy___3CII_FUNC 731
-#define memcpy___3C_3BI_FUNC 732
-#define memcpy___3FII_FUNC 733
-#define memcpy___3III_FUNC 734
-#define memset_FUNC 735
+#define CGDisplayBitsPerPixel_FUNC 110
+#define CGDisplayBitsPerSample_FUNC 111
+#define CGDisplayBytesPerRow_FUNC 112
+#define CGFontCreateWithPlatformFont_FUNC 113
+#define CGFontRelease_FUNC 114
+#define CGGetDisplaysWithRect_FUNC 115
+#define CGImageCreate_FUNC 116
+#define CGImageGetAlphaInfo_FUNC 117
+#define CGImageGetBitsPerComponent_FUNC 118
+#define CGImageGetBitsPerPixel_FUNC 119
+#define CGImageGetBytesPerRow_FUNC 120
+#define CGImageGetColorSpace_FUNC 121
+#define CGImageGetHeight_FUNC 122
+#define CGImageGetWidth_FUNC 123
+#define CGImageRelease_FUNC 124
+#define CGPostKeyboardEvent_FUNC 125
+#define CGPostMouseEvent_FUNC 126
+#define CGWarpMouseCursorPosition_FUNC 127
+#define CallNextEventHandler_FUNC 128
+#define CharWidth_FUNC 129
+#define ClearCurrentScrap_FUNC 130
+#define ClearKeyboardFocus_FUNC 131
+#define ClearMenuBar_FUNC 132
+#define ClipCGContextToRegion_FUNC 133
+#define CloseDataBrowserContainer_FUNC 134
+#define ClosePoly_FUNC 135
+#define CloseRgn_FUNC 136
+#define CollapseWindow_FUNC 137
+#define ConvertEventRefToEventRecord_FUNC 138
+#define ConvertFromPStringToUnicode_FUNC 139
+#define ConvertFromUnicodeToPString_FUNC 140
+#define CopyBits_FUNC 141
+#define CopyControlTitleAsCFString_FUNC 142
+#define CopyDeepMask_FUNC 143
+#define CopyMenuItemTextAsCFString_FUNC 144
+#define CopyRgn_FUNC 145
+#define CountDragItemFlavors_FUNC 146
+#define CountDragItems_FUNC 147
+#define CountMenuItems_FUNC 148
+#define CountSubControls_FUNC 149
+#define CreateBevelButtonControl_FUNC 150
+#define CreateCGContextForPort_FUNC 151
+#define CreateCheckBoxControl_FUNC 152
+#define CreateDataBrowserControl_FUNC 153
+#define CreateEditUnicodeTextControl_FUNC 154
+#define CreateEvent_FUNC 155
+#define CreateGroupBoxControl_FUNC 156
+#define CreateIconControl_FUNC 157
+#define CreateNewMenu_FUNC 158
+#define CreateNewWindow_FUNC 159
+#define CreatePopupArrowControl_FUNC 160
+#define CreatePopupButtonControl_FUNC 161
+#define CreateProgressBarControl_FUNC 162
+#define CreatePushButtonControl_FUNC 163
+#define CreatePushButtonWithIconControl_FUNC 164
+#define CreateRadioButtonControl_FUNC 165
+#define CreateRootControl_FUNC 166
+#define CreateScrollBarControl_FUNC 167
+#define CreateSeparatorControl_FUNC 168
+#define CreateSliderControl_FUNC 169
+#define CreateStandardAlert_FUNC 170
+#define CreateStaticTextControl_FUNC 171
+#define CreateTabsControl_FUNC 172
+#define CreateTextToUnicodeInfoByEncoding_FUNC 173
+#define CreateUnicodeToTextInfoByEncoding_FUNC 174
+#define CreateUserPaneControl_FUNC 175
+#define CreateWindowGroup_FUNC 176
+#define DMGetFirstScreenDevice_FUNC 177
+#define DMGetNextScreenDevice_FUNC 178
+#define DeleteMenu_FUNC 179
+#define DeleteMenuItem_FUNC 180
+#define DeleteMenuItems_FUNC 181
+#define DiffRgn_FUNC 182
+#define DisableControl_FUNC 183
+#define DisableMenuCommand_FUNC 184
+#define DisableMenuItem_FUNC 185
+#define DisposeControl_FUNC 186
+#define DisposeDrag_FUNC 187
+#define DisposeGWorld_FUNC 188
+#define DisposeHandle_FUNC 189
+#define DisposeMenu_FUNC 190
+#define DisposePtr_FUNC 191
+#define DisposeRgn_FUNC 192
+#define DisposeTextToUnicodeInfo_FUNC 193
+#define DisposeUnicodeToTextInfo_FUNC 194
+#define DisposeWindow_FUNC 195
+#define DrawControlInCurrentPort_FUNC 196
+#define DrawMenuBar_FUNC 197
+#define DrawText_FUNC 198
+#define DrawThemeButton_FUNC 199
+#define DrawThemeEditTextFrame_FUNC 200
+#define DrawThemeFocusRect_FUNC 201
+#define DrawThemePopupArrow_FUNC 202
+#define DrawThemeSeparator_FUNC 203
+#define DrawThemeTextBox_FUNC 204
+#define EmbedControl_FUNC 205
+#define EmptyRect_FUNC 206
+#define EmptyRgn_FUNC 207
+#define EnableControl_FUNC 208
+#define EnableMenuCommand_FUNC 209
+#define EnableMenuItem_FUNC 210
+#define EndUpdate_FUNC 211
+#define EqualRect_FUNC 212
+#define EraseRect_FUNC 213
+#define EraseRgn_FUNC 214
+#define FMCreateFontFamilyInstanceIterator_FUNC 215
+#define FMCreateFontFamilyIterator_FUNC 216
+#define FMDisposeFontFamilyInstanceIterator_FUNC 217
+#define FMDisposeFontFamilyIterator_FUNC 218
+#define FMGetATSFontRefFromFont_FUNC 219
+#define FMGetFontFamilyFromName_FUNC 220
+#define FMGetFontFamilyInstanceFromFont_FUNC 221
+#define FMGetFontFamilyName_FUNC 222
+#define FMGetFontFromFontFamilyInstance_FUNC 223
+#define FMGetNextFontFamily_FUNC 224
+#define FMGetNextFontFamilyInstance_FUNC 225
+#define FPIsFontPanelVisible_FUNC 226
+#define FPShowHideFontPanel_FUNC 227
+#define FSGetCatalogInfo_FUNC 228
+#define FSpGetFInfo_FUNC 229
+#define FSpMakeFSRef_FUNC 230
+#define FetchFontInfo_FUNC 231
+#define FindWindow_FUNC 232
+#define Fix2Long_FUNC 233
+#define FrameOval_FUNC 234
+#define FramePoly_FUNC 235
+#define FrameRect_FUNC 236
+#define FrameRoundRect_FUNC 237
+#define FrontWindow_FUNC 238
+#define Gestalt_FUNC 239
+#define GetAppFont_FUNC 240
+#define GetApplicationEventTarget_FUNC 241
+#define GetAvailableWindowAttributes_FUNC 242
+#define GetAvailableWindowPositioningBounds_FUNC 243
+#define GetBestControlRect_FUNC 244
+#define GetCaretTime_FUNC 245
+#define GetClip_FUNC 246
+#define GetControl32BitMaximum_FUNC 247
+#define GetControl32BitMinimum_FUNC 248
+#define GetControl32BitValue_FUNC 249
+#define GetControlBounds_FUNC 250
+#define GetControlData__ISIILorg_eclipse_swt_internal_carbon_ControlFontStyleRec_2_3I_FUNC 251
+#define GetControlData__ISIILorg_eclipse_swt_internal_carbon_Rect_2_3I_FUNC 252
+#define GetControlData__ISII_3B_3I_FUNC 253
+#define GetControlData__ISII_3I_3I_FUNC 254
+#define GetControlData__ISII_3S_3I_FUNC 255
+#define GetControlEventTarget_FUNC 256
+#define GetControlFeatures_FUNC 257
+#define GetControlOwner_FUNC 258
+#define GetControlProperty_FUNC 259
+#define GetControlReference_FUNC 260
+#define GetControlRegion_FUNC 261
+#define GetControlValue_FUNC 262
+#define GetControlViewSize_FUNC 263
+#define GetCurrentEventButtonState_FUNC 264
+#define GetCurrentEventKeyModifiers_FUNC 265
+#define GetCurrentEventLoop_FUNC 266
+#define GetCurrentEventQueue_FUNC 267
+#define GetCurrentProcess_FUNC 268
+#define GetCurrentScrap_FUNC 269
+#define GetDataBrowserCallbacks_FUNC 270
+#define GetDataBrowserItemCount_FUNC 271
+#define GetDataBrowserItemDataButtonValue_FUNC 272
+#define GetDataBrowserItemPartBounds_FUNC 273
+#define GetDataBrowserItemState_FUNC 274
+#define GetDataBrowserItems_FUNC 275
+#define GetDataBrowserListViewHeaderBtnHeight_FUNC 276
+#define GetDataBrowserListViewHeaderDesc_FUNC 277
+#define GetDataBrowserScrollBarInset_FUNC 278
+#define GetDataBrowserScrollPosition_FUNC 279
+#define GetDataBrowserSelectionAnchor_FUNC 280
+#define GetDataBrowserSelectionFlags_FUNC 281
+#define GetDataBrowserSortProperty_FUNC 282
+#define GetDataBrowserTableViewColumnPosition_FUNC 283
+#define GetDataBrowserTableViewItemID_FUNC 284
+#define GetDataBrowserTableViewItemRow_FUNC 285
+#define GetDataBrowserTableViewNamedColumnWidth_FUNC 286
+#define GetDataBrowserTableViewRowHeight_FUNC 287
+#define GetDblTime_FUNC 288
+#define GetDefFontSize_FUNC 289
+#define GetDeviceList_FUNC 290
+#define GetDragAllowableActions_FUNC 291
+#define GetDragDropAction_FUNC 292
+#define GetDragItemReferenceNumber_FUNC 293
+#define GetDragModifiers_FUNC 294
+#define GetDragMouse_FUNC 295
+#define GetEventClass_FUNC 296
+#define GetEventDispatcherTarget_FUNC 297
+#define GetEventKind_FUNC 298
+#define GetEventParameter__III_3II_3ILorg_eclipse_swt_internal_carbon_CGPoint_2_FUNC 299
+#define GetEventParameter__III_3II_3ILorg_eclipse_swt_internal_carbon_HICommand_2_FUNC 300
+#define GetEventParameter__III_3II_3ILorg_eclipse_swt_internal_carbon_Point_2_FUNC 301
+#define GetEventParameter__III_3II_3ILorg_eclipse_swt_internal_carbon_RGBColor_2_FUNC 302
+#define GetEventParameter__III_3II_3ILorg_eclipse_swt_internal_carbon_Rect_2_FUNC 303
+#define GetEventParameter__III_3II_3I_3B_FUNC 304
+#define GetEventParameter__III_3II_3I_3C_FUNC 305
+#define GetEventParameter__III_3II_3I_3I_FUNC 306
+#define GetEventParameter__III_3II_3I_3S_FUNC 307
+#define GetEventTime_FUNC 308
+#define GetFlavorData_FUNC 309
+#define GetFlavorDataSize_FUNC 310
+#define GetFlavorType_FUNC 311
+#define GetFontInfo_FUNC 312
+#define GetGDevice_FUNC 313
+#define GetGWorld_FUNC 314
+#define GetGlobalMouse_FUNC 315
+#define GetHandleSize_FUNC 316
+#define GetIconFamilyData_FUNC 317
+#define GetIconRef_FUNC 318
+#define GetIndMenuItemWithCommandID_FUNC 319
+#define GetIndexedSubControl_FUNC 320
+#define GetItemMark_FUNC 321
+#define GetKeyboardFocus_FUNC 322
+#define GetLastUserEventTime_FUNC 323
+#define GetMBarHeight_FUNC 324
+#define GetMainDevice_FUNC 325
+#define GetMainEventQueue_FUNC 326
+#define GetMenuCommandMark_FUNC 327
+#define GetMenuEventTarget_FUNC 328
+#define GetMenuFont_FUNC 329
+#define GetMenuHeight_FUNC 330
+#define GetMenuID_FUNC 331
+#define GetMenuItemCommandID_FUNC 332
+#define GetMenuItemHierarchicalMenu_FUNC 333
+#define GetMenuItemRefCon_FUNC 334
+#define GetMenuTrackingData_FUNC 335
+#define GetMenuWidth_FUNC 336
+#define GetMouse_FUNC 337
+#define GetNextDevice_FUNC 338
+#define GetPixBounds_FUNC 339
+#define GetPixDepth_FUNC 340
+#define GetPort_FUNC 341
+#define GetPortBitMapForCopyBits_FUNC 342
+#define GetPortBounds_FUNC 343
+#define GetPortClipRegion_FUNC 344
+#define GetPortVisibleRegion_FUNC 345
+#define GetPtrSize_FUNC 346
+#define GetRegionBounds_FUNC 347
+#define GetRootControl_FUNC 348
+#define GetScrapFlavorCount_FUNC 349
+#define GetScrapFlavorData_FUNC 350
+#define GetScrapFlavorInfoList_FUNC 351
+#define GetScrapFlavorSize_FUNC 352
+#define GetScriptManagerVariable_FUNC 353
+#define GetSuperControl_FUNC 354
+#define GetTabContentRect_FUNC 355
+#define GetThemeBrushAsColor_FUNC 356
+#define GetThemeDrawingState_FUNC 357
+#define GetThemeFont_FUNC 358
+#define GetThemeMenuItemExtra_FUNC 359
+#define GetThemeMetric_FUNC 360
+#define GetThemeTextColor_FUNC 361
+#define GetThemeTextDimensions_FUNC 362
+#define GetUserFocusEventTarget_FUNC 363
+#define GetUserFocusWindow_FUNC 364
+#define GetWRefCon_FUNC 365
+#define GetWindowActivationScope_FUNC 366
+#define GetWindowBounds_FUNC 367
+#define GetWindowDefaultButton_FUNC 368
+#define GetWindowEventTarget_FUNC 369
+#define GetWindowFromPort_FUNC 370
+#define GetWindowGroupOfClass_FUNC 371
+#define GetWindowModality_FUNC 372
+#define GetWindowPort_FUNC 373
+#define GetWindowRegion_FUNC 374
+#define GetWindowStructureWidths_FUNC 375
+#define HIComboBoxAppendTextItem_FUNC 376
+#define HIComboBoxCopyTextItemAtIndex_FUNC 377
+#define HIComboBoxCreate_FUNC 378
+#define HIComboBoxGetItemCount_FUNC 379
+#define HIComboBoxInsertTextItemAtIndex_FUNC 380
+#define HIComboBoxRemoveItemAtIndex_FUNC 381
+#define HIObjectCopyClassID_FUNC 382
+#define HIObjectCreate_FUNC 383
+#define HIObjectRegisterSubclass_FUNC 384
+#define HIViewAddSubview_FUNC 385
+#define HIViewClick_FUNC 386
+#define HIViewConvertPoint_FUNC 387
+#define HIViewCreateOffscreenImage_FUNC 388
+#define HIViewFindByID_FUNC 389
+#define HIViewGetFirstSubview_FUNC 390
+#define HIViewGetFrame_FUNC 391
+#define HIViewGetLastSubview_FUNC 392
+#define HIViewGetNextView_FUNC 393
+#define HIViewGetRoot_FUNC 394
+#define HIViewGetSizeConstraints_FUNC 395
+#define HIViewGetSubviewHit_FUNC 396
+#define HIViewGetViewForMouseEvent_FUNC 397
+#define HIViewIsVisible_FUNC 398
+#define HIViewRemoveFromSuperview_FUNC 399
+#define HIViewSetBoundsOrigin_FUNC 400
+#define HIViewSetDrawingEnabled_FUNC 401
+#define HIViewSetFrame_FUNC 402
+#define HIViewSetNeedsDisplay_FUNC 403
+#define HIViewSetNeedsDisplayInRegion_FUNC 404
+#define HIViewSetVisible_FUNC 405
+#define HIViewSetZOrder_FUNC 406
+#define HIViewSimulateClick_FUNC 407
+#define HLock_FUNC 408
+#define HMGetTagDelay_FUNC 409
+#define HMHideTag_FUNC 410
+#define HMInstallControlContentCallback_FUNC 411
+#define HMSetTagDelay_FUNC 412
+#define HUnlock_FUNC 413
+#define HandleControlClick_FUNC 414
+#define HandleControlSetCursor_FUNC 415
+#define HiWord_FUNC 416
+#define HideWindow_FUNC 417
+#define HiliteMenu_FUNC 418
+#define IconRefToIconFamily_FUNC 419
+#define InitContextualMenus_FUNC 420
+#define InitCursor_FUNC 421
+#define InitDataBrowserCallbacks_FUNC 422
+#define InitDataBrowserCustomCallbacks_FUNC 423
+#define InsertMenu_FUNC 424
+#define InsertMenuItemTextWithCFString_FUNC 425
+#define InstallEventHandler_FUNC 426
+#define InstallEventLoopTimer_FUNC 427
+#define InstallReceiveHandler_FUNC 428
+#define InstallTrackingHandler_FUNC 429
+#define InvalWindowRect_FUNC 430
+#define InvalWindowRgn_FUNC 431
+#define InvertRect_FUNC 432
+#define InvertRgn_FUNC 433
+#define IsControlActive_FUNC 434
+#define IsControlEnabled_FUNC 435
+#define IsControlVisible_FUNC 436
+#define IsDataBrowserItemSelected_FUNC 437
+#define IsMenuCommandEnabled_FUNC 438
+#define IsMenuItemEnabled_FUNC 439
+#define IsValidControlHandle_FUNC 440
+#define IsValidMenu_FUNC 441
+#define IsValidWindowPtr_FUNC 442
+#define IsWindowActive_FUNC 443
+#define IsWindowCollapsed_FUNC 444
+#define IsWindowVisible_FUNC 445
+#define KeyTranslate_FUNC 446
+#define KillPoly_FUNC 447
+#define LineTo_FUNC 448
+#define LoWord_FUNC 449
+#define LockPortBits_FUNC 450
+#define Long2Fix_FUNC 451
+#define MenuSelect_FUNC 452
+#define MoveControl_FUNC 453
+#define MoveTo_FUNC 454
+#define MoveWindow_FUNC 455
+#define NavCreateChooseFolderDialog_FUNC 456
+#define NavCreateGetFileDialog_FUNC 457
+#define NavCreatePutFileDialog_FUNC 458
+#define NavDialogDispose_FUNC 459
+#define NavDialogGetReply_FUNC 460
+#define NavDialogGetSaveFileName_FUNC 461
+#define NavDialogGetUserAction_FUNC 462
+#define NavDialogRun_FUNC 463
+#define NavDialogSetSaveFileName_FUNC 464
+#define NavGetDefaultDialogCreationOptions_FUNC 465
+#define NewControl_FUNC 466
+#define NewDrag_FUNC 467
+#define NewGWorldFromPtr_FUNC 468
+#define NewHandle_FUNC 469
+#define NewHandleClear_FUNC 470
+#define NewPtr_FUNC 471
+#define NewPtrClear_FUNC 472
+#define NewRgn_FUNC 473
+#define OffsetRect_FUNC 474
+#define OffsetRgn_FUNC 475
+#define OpenDataBrowserContainer_FUNC 476
+#define OpenPoly_FUNC 477
+#define OpenRgn_FUNC 478
+#define PMCreatePageFormat_FUNC 479
+#define PMCreatePrintSettings_FUNC 480
+#define PMCreateSession_FUNC 481
+#define PMFlattenPageFormat_FUNC 482
+#define PMFlattenPrintSettings_FUNC 483
+#define PMGetAdjustedPageRect_FUNC 484
+#define PMGetAdjustedPaperRect_FUNC 485
+#define PMGetCollate_FUNC 486
+#define PMGetCopies_FUNC 487
+#define PMGetFirstPage_FUNC 488
+#define PMGetJobNameCFString_FUNC 489
+#define PMGetLastPage_FUNC 490
+#define PMGetPageRange_FUNC 491
+#define PMGetResolution_FUNC 492
+#define PMRelease_FUNC 493
+#define PMSessionBeginDocumentNoDialog_FUNC 494
+#define PMSessionBeginPageNoDialog_FUNC 495
+#define PMSessionCopyDestinationLocation_FUNC 496
+#define PMSessionCreatePrinterList_FUNC 497
+#define PMSessionDefaultPageFormat_FUNC 498
+#define PMSessionDefaultPrintSettings_FUNC 499
+#define PMSessionEndDocumentNoDialog_FUNC 500
+#define PMSessionEndPageNoDialog_FUNC 501
+#define PMSessionError_FUNC 502
+#define PMSessionGetDestinationType_FUNC 503
+#define PMSessionGetGraphicsContext_FUNC 504
+#define PMSessionPageSetupDialog_FUNC 505
+#define PMSessionPrintDialog_FUNC 506
+#define PMSessionSetCurrentPrinter_FUNC 507
+#define PMSessionSetDestination_FUNC 508
+#define PMSessionSetDocumentFormatGeneration_FUNC 509
+#define PMSessionSetError_FUNC 510
+#define PMSessionUseSheets_FUNC 511
+#define PMSessionValidatePageFormat_FUNC 512
+#define PMSessionValidatePrintSettings_FUNC 513
+#define PMSetCollate_FUNC 514
+#define PMSetFirstPage_FUNC 515
+#define PMSetJobNameCFString_FUNC 516
+#define PMSetLastPage_FUNC 517
+#define PMSetPageRange_FUNC 518
+#define PMUnflattenPageFormat_FUNC 519
+#define PMUnflattenPrintSettings_FUNC 520
+#define PaintOval_FUNC 521
+#define PaintPoly_FUNC 522
+#define PaintRect_FUNC 523
+#define PaintRoundRect_FUNC 524
+#define PenSize_FUNC 525
+#define PickColor_FUNC 526
+#define PopUpMenuSelect_FUNC 527
+#define PostEvent_FUNC 528
+#define PostEventToQueue_FUNC 529
+#define PtInRect_FUNC 530
+#define PtInRgn_FUNC 531
+#define PutScrapFlavor_FUNC 532
+#define QDBeginCGContext_FUNC 533
+#define QDEndCGContext_FUNC 534
+#define QDFlushPortBuffer_FUNC 535
+#define QDGlobalToLocalPoint_FUNC 536
+#define QDLocalToGlobalPoint_FUNC 537
+#define QDSetDirtyRegion_FUNC 538
+#define QDSetPatternOrigin_FUNC 539
+#define QDSwapTextFlags_FUNC 540
+#define RGBBackColor_FUNC 541
+#define RGBForeColor_FUNC 542
+#define ReceiveNextEvent_FUNC 543
+#define RectInRgn_FUNC 544
+#define RectRgn_FUNC 545
+#define RegisterAppearanceClient_FUNC 546
+#define ReleaseEvent_FUNC 547
+#define ReleaseIconRef_FUNC 548
+#define ReleaseMenu_FUNC 549
+#define ReleaseWindow_FUNC 550
+#define ReleaseWindowGroup_FUNC 551
+#define RemoveControlProperty_FUNC 552
+#define RemoveDataBrowserItems_FUNC 553
+#define RemoveDataBrowserTableViewColumn_FUNC 554
+#define RemoveEventHandler_FUNC 555
+#define RemoveEventLoopTimer_FUNC 556
+#define RemoveReceiveHandler_FUNC 557
+#define RemoveTrackingHandler_FUNC 558
+#define RepositionWindow_FUNC 559
+#define ReshapeCustomWindow_FUNC 560
+#define RetainEvent_FUNC 561
+#define RetainMenu_FUNC 562
+#define RetainWindow_FUNC 563
+#define RevealDataBrowserItem_FUNC 564
+#define RunStandardAlert_FUNC 565
+#define ScrollRect_FUNC 566
+#define SectRect_FUNC 567
+#define SectRgn_FUNC 568
+#define SelectWindow_FUNC 569
+#define SendBehind_FUNC 570
+#define SendEventToEventTarget_FUNC 571
+#define SetBevelButtonContentInfo_FUNC 572
+#define SetClip_FUNC 573
+#define SetControl32BitMaximum_FUNC 574
+#define SetControl32BitMinimum_FUNC 575
+#define SetControl32BitValue_FUNC 576
+#define SetControlAction_FUNC 577
+#define SetControlBounds_FUNC 578
+#define SetControlColorProc_FUNC 579
+#define SetControlData__IIIII_FUNC 580
+#define SetControlData__IIIILorg_eclipse_swt_internal_carbon_ControlButtonContentInfo_2_FUNC 581
+#define SetControlData__IIIILorg_eclipse_swt_internal_carbon_ControlTabInfoRecV1_2_FUNC 582
+#define SetControlData__IIIILorg_eclipse_swt_internal_carbon_Rect_2_FUNC 583
+#define SetControlData__IIII_3B_FUNC 584
+#define SetControlData__IIII_3I_FUNC 585
+#define SetControlData__IIII_3S_FUNC 586
+#define SetControlFontStyle_FUNC 587
+#define SetControlPopupMenuHandle_FUNC 588
+#define SetControlProperty_FUNC 589
+#define SetControlReference_FUNC 590
+#define SetControlTitleWithCFString_FUNC 591
+#define SetControlViewSize_FUNC 592
+#define SetControlVisibility_FUNC 593
+#define SetCursor_FUNC 594
+#define SetDataBrowserCallbacks_FUNC 595
+#define SetDataBrowserCustomCallbacks_FUNC 596
+#define SetDataBrowserHasScrollBars_FUNC 597
+#define SetDataBrowserItemDataBooleanValue_FUNC 598
+#define SetDataBrowserItemDataButtonValue_FUNC 599
+#define SetDataBrowserItemDataIcon_FUNC 600
+#define SetDataBrowserItemDataItemID_FUNC 601
+#define SetDataBrowserItemDataText_FUNC 602
+#define SetDataBrowserListViewDisclosureColumn_FUNC 603
+#define SetDataBrowserListViewHeaderBtnHeight_FUNC 604
+#define SetDataBrowserListViewHeaderDesc_FUNC 605
+#define SetDataBrowserScrollPosition_FUNC 606
+#define SetDataBrowserSelectedItems_FUNC 607
+#define SetDataBrowserSelectionFlags_FUNC 608
+#define SetDataBrowserSortOrder_FUNC 609
+#define SetDataBrowserTableViewColumnPosition_FUNC 610
+#define SetDataBrowserTableViewHiliteStyle_FUNC 611
+#define SetDataBrowserTableViewItemRow_FUNC 612
+#define SetDataBrowserTableViewNamedColumnWidth_FUNC 613
+#define SetDataBrowserTarget_FUNC 614
+#define SetDragAllowableActions_FUNC 615
+#define SetDragDropAction_FUNC 616
+#define SetDragInputProc_FUNC 617
+#define SetEventLoopTimerNextFireTime_FUNC 618
+#define SetEventParameter__IIII_3C_FUNC 619
+#define SetEventParameter__IIII_3S_FUNC 620
+#define SetFontInfoForSelection_FUNC 621
+#define SetFrontProcess_FUNC 622
+#define SetFrontProcessWithOptions_FUNC 623
+#define SetGWorld_FUNC 624
+#define SetItemMark_FUNC 625
+#define SetKeyboardFocus_FUNC 626
+#define SetMenuCommandMark_FUNC 627
+#define SetMenuFont_FUNC 628
+#define SetMenuItemCommandKey_FUNC 629
+#define SetMenuItemHierarchicalMenu_FUNC 630
+#define SetMenuItemIconHandle_FUNC 631
+#define SetMenuItemKeyGlyph_FUNC 632
+#define SetMenuItemModifiers_FUNC 633
+#define SetMenuItemRefCon_FUNC 634
+#define SetMenuItemTextWithCFString_FUNC 635
+#define SetMenuTitleWithCFString_FUNC 636
+#define SetOrigin_FUNC 637
+#define SetPort_FUNC 638
+#define SetPortBounds_FUNC 639
+#define SetPortWindowPort_FUNC 640
+#define SetPt_FUNC 641
+#define SetRect_FUNC 642
+#define SetRectRgn_FUNC 643
+#define SetRootMenu_FUNC 644
+#define SetThemeBackground_FUNC 645
+#define SetThemeCursor_FUNC 646
+#define SetThemeDrawingState_FUNC 647
+#define SetThemeTextColor_FUNC 648
+#define SetThemeWindowBackground_FUNC 649
+#define SetUpControlBackground_FUNC 650
+#define SetWRefCon_FUNC 651
+#define SetWindowActivationScope_FUNC 652
+#define SetWindowBounds_FUNC 653
+#define SetWindowDefaultButton_FUNC 654
+#define SetWindowGroup_FUNC 655
+#define SetWindowGroupOwner_FUNC 656
+#define SetWindowGroupParent_FUNC 657
+#define SetWindowModality_FUNC 658
+#define SetWindowTitleWithCFString_FUNC 659
+#define ShowWindow_FUNC 660
+#define SizeControl_FUNC 661
+#define SizeWindow_FUNC 662
+#define StillDown_FUNC 663
+#define SyncCGContextOriginWithPort_FUNC 664
+#define SysBeep_FUNC 665
+#define TXNActivate_FUNC 666
+#define TXNAdjustCursor_FUNC 667
+#define TXNClick_FUNC 668
+#define TXNCopy_FUNC 669
+#define TXNCut_FUNC 670
+#define TXNDataSize_FUNC 671
+#define TXNDeleteObject_FUNC 672
+#define TXNDraw_FUNC 673
+#define TXNEchoMode_FUNC 674
+#define TXNFocus_FUNC 675
+#define TXNGetData_FUNC 676
+#define TXNGetLineCount_FUNC 677
+#define TXNGetLineMetrics_FUNC 678
+#define TXNGetRectBounds_FUNC 679
+#define TXNGetSelection_FUNC 680
+#define TXNGetTXNObjectControls_FUNC 681
+#define TXNGetViewRect_FUNC 682
+#define TXNInitTextension_FUNC 683
+#define TXNNewObject_FUNC 684
+#define TXNOffsetToPoint_FUNC 685
+#define TXNPaste_FUNC 686
+#define TXNPointToOffset_FUNC 687
+#define TXNSelectAll_FUNC 688
+#define TXNSetBackground_FUNC 689
+#define TXNSetData_FUNC 690
+#define TXNSetFrameBounds_FUNC 691
+#define TXNSetRectBounds_FUNC 692
+#define TXNSetSelection_FUNC 693
+#define TXNSetTXNObjectControls_FUNC 694
+#define TXNSetTypeAttributes_FUNC 695
+#define TXNShowSelection_FUNC 696
+#define TestControl_FUNC 697
+#define TextFace_FUNC 698
+#define TextFont_FUNC 699
+#define TextMode_FUNC 700
+#define TextSize_FUNC 701
+#define TextWidth_FUNC 702
+#define TrackDrag_FUNC 703
+#define TrackMouseLocationWithOptions_FUNC 704
+#define UnionRect_FUNC 705
+#define UnionRgn_FUNC 706
+#define UnlockPortBits_FUNC 707
+#define UpdateControls_FUNC 708
+#define UpdateDataBrowserItems_FUNC 709
+#define UpgradeScriptInfoToTextEncoding_FUNC 710
+#define WaitMouseMoved_FUNC 711
+#define X2Fix_FUNC 712
+#define ZoomWindowIdeal_FUNC 713
+#define kHIViewWindowContentID_FUNC 714
+#define kPMDocumentFormatPDF_FUNC 715
+#define kPMGraphicsContextCoreGraphics_FUNC 716
+#define memcpy__III_FUNC 717
+#define memcpy__ILorg_eclipse_swt_internal_carbon_ATSUTab_2I_FUNC 718
+#define memcpy__ILorg_eclipse_swt_internal_carbon_BitMap_2I_FUNC 719
+#define memcpy__ILorg_eclipse_swt_internal_carbon_Cursor_2I_FUNC 720
+#define memcpy__ILorg_eclipse_swt_internal_carbon_EventRecord_2I_FUNC 721
+#define memcpy__ILorg_eclipse_swt_internal_carbon_FontSelectionQDStyle_2I_FUNC 722
+#define memcpy__ILorg_eclipse_swt_internal_carbon_HMHelpContentRec_2I_FUNC 723
+#define memcpy__ILorg_eclipse_swt_internal_carbon_PixMap_2I_FUNC 724
+#define memcpy__ILorg_eclipse_swt_internal_carbon_RGBColor_2I_FUNC 725
+#define memcpy__ILorg_eclipse_swt_internal_carbon_Rect_2I_FUNC 726
+#define memcpy__I_3BI_FUNC 727
+#define memcpy__I_3CI_FUNC 728
+#define memcpy__I_3II_FUNC 729
+#define memcpy__Lorg_eclipse_swt_internal_carbon_ATSTrapezoid_2II_FUNC 730
+#define memcpy__Lorg_eclipse_swt_internal_carbon_FontSelectionQDStyle_2II_FUNC 731
+#define memcpy__Lorg_eclipse_swt_internal_carbon_GDevice_2II_FUNC 732
+#define memcpy__Lorg_eclipse_swt_internal_carbon_HMHelpContentRec_2II_FUNC 733
+#define memcpy__Lorg_eclipse_swt_internal_carbon_PixMap_2II_FUNC 734
+#define memcpy__Lorg_eclipse_swt_internal_carbon_Rect_2II_FUNC 735
+#define memcpy___3BII_FUNC 736
+#define memcpy___3B_3CI_FUNC 737
+#define memcpy___3CII_FUNC 738
+#define memcpy___3C_3BI_FUNC 739
+#define memcpy___3FII_FUNC 740
+#define memcpy___3III_FUNC 741
+#define memset_FUNC 742
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/carbon/org/eclipse/swt/internal/carbon/OS.java b/bundles/org.eclipse.swt/Eclipse SWT PI/carbon/org/eclipse/swt/internal/carbon/OS.java
index 70e3e60979..7a51f5f726 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/carbon/org/eclipse/swt/internal/carbon/OS.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT PI/carbon/org/eclipse/swt/internal/carbon/OS.java
@@ -214,6 +214,7 @@ public class OS {
public static final int kDataBrowserListView = ('l'<<24) + ('s'<<16) + ('t'<<8) + 'v';
public static final int kDataBrowserListViewLatestHeaderDesc = 0;
public static final int kDataBrowserListViewSelectionColumn = 1 << OS.kDataBrowserViewSpecificFlagsOffset;
+ public static final int kDataBrowserListViewSortableColumn = 1 << 18;
public static final int kDataBrowserNeverEmptySelectionSet = 1 << 6;
public static final int kDataBrowserNoItem = 0;
public static final int kDataBrowserOrderIncreasing = 1;
@@ -225,6 +226,7 @@ public class OS {
public static final int kDataBrowserRevealAndCenterInView = 1 << 0;
public static final int kDataBrowserRevealWithoutSelecting = 1 << 1;
public static final int kDataBrowserSelectOnlyOne = 1 << 1;
+ public static final int kDataBrowserUserStateChanged = 13;
public static final int kDataBrowserUserToggledContainer = 16;
public static final int kDataBrowserTextType = ('t'<<24) + ('e'<<16) + ('x'<<8) + 't';
public static final int kDataBrowserTableViewFillHilite = 1;
@@ -779,8 +781,12 @@ public static final native void CGContextStrokePath (int ctx);
public static final native void CGContextSynchronize (int ctx);
public static final native int CGDataProviderCreateWithData (int info, int data, int size, int releaseData);
public static final native void CGDataProviderRelease (int provider);
+public static final native int CGDisplayBitsPerPixel (int display);
+public static final native int CGDisplayBitsPerSample (int display);
+public static final native int CGDisplayBytesPerRow (int display);
public static final native int CGFontCreateWithPlatformFont (int[] platformFontReference);
public static final native void CGFontRelease (int font);
+public static final native int CGGetDisplaysWithRect (CGRect rect, int maxDisplays, int[] dspys, int[] dspyCnt);
public static final native int CGImageCreate (int width, int height, int bitsPerComponent, int bitsPerPixel, int bytesPerRow, int colorspace, int alphaInfo, int provider, float[] decode, boolean shouldInterpolate, int intent);
public static final native int CGImageGetAlphaInfo (int image);
public static final native int CGImageGetBitsPerComponent (int image);
@@ -952,6 +958,7 @@ public static final native int GetDataBrowserScrollBarInset(int browser, Rect in
public static final native int GetDataBrowserScrollPosition(int cHandle, int[] top, int[] left);
public static final native int GetDataBrowserSelectionAnchor(int browser, int [] first, int [] last);
public static final native int GetDataBrowserSelectionFlags(int browser, int [] selectionFlags);
+public static final native int GetDataBrowserSortProperty(int browser, int[] property);
public static final native int GetDblTime();
public static final native short GetDefFontSize();
public static final native int GetDeviceList();
@@ -1053,6 +1060,7 @@ public static final native int HIObjectRegisterSubclass(int inClassID, int inBas
public static final native int HIViewAddSubview(int parent, int child);
public static final native int HIViewClick(int inView, int inEvent);
public static final native int HIViewConvertPoint(CGPoint ioPoint, int inSourceView, int inDestView);
+public static final native int HIViewCreateOffscreenImage(int inView, int inOptions, CGRect outFrame, int[] outImage );
public static final native int HIViewFindByID(int inStartView, int inID, int[] outControl);
public static final native int HIViewGetFirstSubview(int inView);
public static final native int HIViewGetLastSubview(int inView);
@@ -1272,6 +1280,7 @@ public static final native int SetDataBrowserListViewHeaderDesc(int browser, int
public static final native int SetDataBrowserScrollPosition(int cHandle, int top, int left);
public static final native int SetDataBrowserSelectedItems(int cHandle, int numItems, int[] items, int operation);
public static final native int SetDataBrowserSelectionFlags(int cHandle, int selectionFlags);
+public static final native int SetDataBrowserSortOrder(int browser, short order);
public static final native int SetDataBrowserTableViewColumnPosition(int browser, int column, int position);
public static final native int SetDataBrowserTableViewHiliteStyle(int browser, int hiliteStyle);
public static final native int SetDataBrowserTableViewItemRow(int browser, int item, int row);