summaryrefslogtreecommitdiffstats
path: root/bundles
diff options
context:
space:
mode:
authorFelipe Heidrich <fheidric>2007-01-26 23:26:56 +0000
committerFelipe Heidrich <fheidric>2007-01-26 23:26:56 +0000
commit6f962e3a053bd8c18a3e154a7ac0ad1ba2aeb3fe (patch)
tree7e2a9bb6541e24eef6fe46c8231185cbb7149093 /bundles
parent579505f5c399bb89f97d98e9912b18625d2312e2 (diff)
downloadeclipse.platform.swt-6f962e3a053bd8c18a3e154a7ac0ad1ba2aeb3fe.tar.gz
eclipse.platform.swt-6f962e3a053bd8c18a3e154a7ac0ad1ba2aeb3fe.tar.xz
eclipse.platform.swt-6f962e3a053bd8c18a3e154a7ac0ad1ba2aeb3fe.zip
new jni tool (support wpf)
Diffstat (limited to 'bundles')
-rw-r--r--bundles/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/Flags.java5
-rw-r--r--bundles/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/MethodData.java2
-rw-r--r--bundles/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/NativesGenerator.java89
-rw-r--r--bundles/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/ParameterData.java2
-rw-r--r--bundles/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/StatsGenerator.java8
-rw-r--r--bundles/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/org.eclipse.swt.internal.properties4
-rw-r--r--bundles/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/org.eclipse.swt.internal.wpf.COM.properties3343
-rw-r--r--bundles/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/org.eclipse.swt.internal.wpf.OS.properties3343
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/library/xpcom.cpp127
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/library/xpcom_stats.h4
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/library/xpcominit.cpp5
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/library/xpcominit_stats.h4
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT OpenGL/carbon/library/agl_stats.h4
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT OpenGL/glx/library/glx_stats.h4
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT OpenGL/win32/library/wgl_stats.h4
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/cairo/library/cairo_stats.h4
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/carbon/library/cocoa_stats.h4
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/carbon/library/os_stats.h4
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/common/library/c_stats.h4
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/atk_stats.h4
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/os_stats.h4
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/motif/library/os_stats.h4
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/motif_gtk/library/gtk_stats.h4
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/photon/library/os_stats.h4
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/win32/library/com_stats.h4
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/win32/library/gdip.cpp159
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/win32/library/gdip_stats.h4
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/win32/library/os_stats.h4
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT Program/cde/library/cde_stats.h4
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT Program/gnome/library/gnome_stats.h4
30 files changed, 7135 insertions, 28 deletions
diff --git a/bundles/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/Flags.java b/bundles/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/Flags.java
index eb7149da21..43fd30082c 100644
--- a/bundles/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/Flags.java
+++ b/bundles/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/Flags.java
@@ -18,4 +18,9 @@ public interface Flags {
public static final String FLAG_DYNAMIC = "dynamic";
public static final String FLAG_JNI = "jni";
public static final String FLAG_ADDRESS = "address";
+ public static final String FLAG_GCNEW = "gcnew";
+ public static final String FLAG_GCOBJECT = "gcobject";
+ public static final String FLAG_SETTER = "setter";
+ public static final String FLAG_GETTER = "getter";
+ public static final String FLAG_ADDER = "adder";
}
diff --git a/bundles/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/MethodData.java b/bundles/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/MethodData.java
index 5d9d308284..c2e5953798 100644
--- a/bundles/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/MethodData.java
+++ b/bundles/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/MethodData.java
@@ -22,7 +22,7 @@ public MethodData(Method method, String str) {
}
public static String[] getAllFlags() {
- return new String[]{FLAG_NO_GEN, FLAG_ADDRESS, FLAG_CONST, FLAG_DYNAMIC, FLAG_JNI, FLAG_CPP, FLAG_NEW, FLAG_DELETE};
+ return new String[]{FLAG_NO_GEN, FLAG_ADDRESS, FLAG_CONST, FLAG_STRUCT, FLAG_DYNAMIC, FLAG_JNI, FLAG_CPP, FLAG_NEW, FLAG_DELETE, FLAG_GCNEW, FLAG_GCOBJECT, FLAG_SETTER, FLAG_GETTER, FLAG_ADDER};
}
public Method getMethod() {
diff --git a/bundles/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/NativesGenerator.java b/bundles/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/NativesGenerator.java
index b4d1faf4e5..d9fb8169a2 100644
--- a/bundles/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/NativesGenerator.java
+++ b/bundles/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/NativesGenerator.java
@@ -61,16 +61,9 @@ public void generate(Class clazz) {
}
if (i == methods.length) return;
sort(methods);
- if (isCPP) {
- outputln("extern \"C\" {");
- outputln();
- }
generateNativeMacro(clazz);
generateExcludes(methods);
generate(methods);
- if (isCPP) {
- outputln("}");
- }
}
public void generate(Method[] methods) {
@@ -97,7 +90,12 @@ public void generate(Method method) {
}
generateSourceStart(function);
- generateFunctionPrototype(method, function, paramTypes, returnType);
+ if (isCPP) {
+ output("extern \"C\" ");
+ generateFunctionPrototype(method, function, paramTypes, returnType, true);
+ outputln(";");
+ }
+ generateFunctionPrototype(method, function, paramTypes, returnType, false);
generateFunctionBody(method, methodData, function, paramTypes, returnType);
generateSourceEnd(function);
outputln();
@@ -159,6 +157,9 @@ boolean generateGetParameter(Method method, int i, Class paramType, ParameterDat
if (componentType.isPrimitive()) {
if (critical) {
if (isCPP) {
+ output("(");
+ output(getTypeSignature2(componentType));
+ output("*)");
output("env->GetPrimitiveArrayCritical(arg");
} else {
output("(*env)->GetPrimitiveArrayCritical(env, arg");
@@ -476,6 +477,7 @@ void generateDynamicFunctionCall(Method method, MethodData methodData, Class[] p
generateFunctionCallLeftSide(method, methodData, returnType, needsReturn);
output("fp");
generateFunctionCallRightSide(method, methodData, paramTypes, 0);
+ output(";");
outputln();
outputln("\t\t}");
} else if (getPlatform().equals("carbon")) {
@@ -516,6 +518,7 @@ void generateDynamicFunctionCall(Method method, MethodData methodData, Class[] p
generateFunctionCallLeftSide(method, methodData, returnType, needsReturn);
output("(*fptr)");
generateFunctionCallRightSide(method, methodData, paramTypes, 0);
+ output(";");
outputln();
outputln("\t\t}");
} else {
@@ -556,6 +559,7 @@ void generateDynamicFunctionCall(Method method, MethodData methodData, Class[] p
generateFunctionCallLeftSide(method, methodData, returnType, needsReturn);
output("(*fptr)");
generateFunctionCallRightSide(method, methodData, paramTypes, 0);
+ output(";");
outputln();
outputln("\t\t}");
}
@@ -595,16 +599,17 @@ void generateFunctionCallRightSide(Method method, MethodData methodData, Class[]
if (i != paramStart) output(", ");
if (paramData.getFlag(FLAG_STRUCT)) output("*");
output(paramData.getCast());
+ if (paramData.getFlag(FLAG_GCOBJECT)) output("TO_OBJECT(");
if (i == paramTypes.length - 1 && paramData.getFlag(FLAG_SENTINEL)) {
output("NULL");
} else {
if (!paramType.isPrimitive() && !isSystemClass(paramType)) output("lp");
output("arg" + i);
}
+ if (paramData.getFlag(FLAG_GCOBJECT)) output(")");
}
output(")");
}
- output(";");
}
void generateFunctionCall(Method method, MethodData methodData, Class[] paramTypes, Class returnType, boolean needsReturn) {
@@ -646,7 +651,14 @@ void generateFunctionCall(Method method, MethodData methodData, Class[] paramTyp
output(getTypeSignature4(paramTypes[1]));
output(" **)arg1)[arg0])");
paramStart = 1;
- } else if (methodData.getFlag(FLAG_CPP)) {
+ } else if (methodData.getFlag(FLAG_CPP) || methodData.getFlag(FLAG_SETTER) || methodData.getFlag(FLAG_GETTER) || methodData.getFlag(FLAG_ADDER)) {
+ if (methodData.getFlag(FLAG_GCOBJECT)) {
+ if (methodData.getFlag(FLAG_STRUCT)) {
+ output("TO_HANDLE_STRUCT(");
+ } else {
+ output("TO_HANDLE(");
+ }
+ }
output("(");
ParameterData paramData = getMetaData().getMetaData(method, 0);
if (paramData.getFlag(FLAG_STRUCT)) output("*");
@@ -654,7 +666,14 @@ void generateFunctionCall(Method method, MethodData methodData, Class[] paramTyp
if (cast.length() != 0 && !cast.equals("()")) {
output(cast);
}
- output("arg0)->");
+ if (paramData.getFlag(FLAG_GCOBJECT)) {
+ output("TO_OBJECT(");
+ }
+ output("arg0");
+ if (paramData.getFlag(FLAG_GCOBJECT)) {
+ output(")");
+ }
+ output(")->");
String accessor = methodData.getAccessor();
if (accessor.length() != 0) {
output(accessor);
@@ -667,6 +686,19 @@ void generateFunctionCall(Method method, MethodData methodData, Class[] paramTyp
}
}
paramStart = 1;
+ } else if (methodData.getFlag(FLAG_GCNEW)) {
+ output("TO_HANDLE(gcnew ");
+ String accessor = methodData.getAccessor();
+ if (accessor.length() != 0) {
+ output(accessor);
+ } else {
+ int index = -1;
+ if ((index = name.indexOf('_')) != -1) {
+ output(name.substring(index + 1));
+ } else {
+ output(name);
+ }
+ }
} else if (methodData.getFlag(FLAG_NEW)) {
output("new ");
String accessor = methodData.getAccessor();
@@ -694,6 +726,13 @@ void generateFunctionCall(Method method, MethodData methodData, Class[] paramTyp
outputln("arg0;");
return;
} else {
+ if (methodData.getFlag(FLAG_GCOBJECT)) {
+ if (methodData.getFlag(FLAG_STRUCT)) {
+ output("TO_HANDLE_STRUCT(");
+ } else {
+ output("TO_HANDLE(");
+ }
+ }
String accessor = methodData.getAccessor();
if (accessor.length() != 0) {
output(accessor);
@@ -701,7 +740,19 @@ void generateFunctionCall(Method method, MethodData methodData, Class[] paramTyp
output(name);
}
}
- generateFunctionCallRightSide(method, methodData, paramTypes, paramStart);
+ if ((methodData.getFlag(FLAG_SETTER) && paramTypes.length == 3) || (methodData.getFlag(FLAG_GETTER) && paramTypes.length == 2)) {
+ output("[arg1]");
+ paramStart++;
+ }
+ if (methodData.getFlag(FLAG_SETTER)) output(" = ");
+ if (methodData.getFlag(FLAG_ADDER)) output(" += ");
+ if (!methodData.getFlag(FLAG_GETTER)) {
+ generateFunctionCallRightSide(method, methodData, paramTypes, paramStart);
+ }
+ if (methodData.getFlag(FLAG_GCNEW) || methodData.getFlag(FLAG_GCOBJECT)) {
+ output(")");
+ }
+ output(";");
outputln();
if (makeCopy) {
outputln("\t{");
@@ -767,15 +818,20 @@ void generateFunctionBody(Method method, MethodData methodData, String function,
outputln("}");
}
-void generateFunctionPrototype(Method method, String function, Class[] paramTypes, Class returnType) {
+void generateFunctionPrototype(Method method, String function, Class[] paramTypes, Class returnType, boolean singleLine) {
output("JNIEXPORT ");
output(getTypeSignature2(returnType));
output(" JNICALL ");
output(getClassName(method.getDeclaringClass()));
output("_NATIVE(");
output(function);
- outputln(")");
- output("\t(JNIEnv *env, ");
+ if (singleLine) {
+ output(")");
+ output("(JNIEnv *env, ");
+ } else {
+ outputln(")");
+ output("\t(JNIEnv *env, ");
+ }
if ((method.getModifiers() & Modifier.STATIC) != 0) {
output("jclass");
} else {
@@ -788,7 +844,8 @@ void generateFunctionPrototype(Method method, String function, Class[] paramType
output(getTypeSignature2(paramType));
output(" arg" + i);
}
- outputln(")");
+ output(")");
+ if (!singleLine) outputln();
}
void generateSourceStart(String function) {
diff --git a/bundles/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/ParameterData.java b/bundles/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/ParameterData.java
index 277c8b573c..849bc6ade0 100644
--- a/bundles/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/ParameterData.java
+++ b/bundles/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/ParameterData.java
@@ -24,7 +24,7 @@ public ParameterData(Method method, int parameter, String str) {
}
public static String[] getAllFlags() {
- return new String[]{FLAG_NO_IN, FLAG_NO_OUT, FLAG_CRITICAL, FLAG_INIT, FLAG_STRUCT, FLAG_UNICODE, FLAG_SENTINEL};
+ return new String[]{FLAG_NO_IN, FLAG_NO_OUT, FLAG_CRITICAL, FLAG_INIT, FLAG_STRUCT, FLAG_UNICODE, FLAG_SENTINEL, FLAG_GCOBJECT};
}
public String getCast() {
diff --git a/bundles/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/StatsGenerator.java b/bundles/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/StatsGenerator.java
index 5d50cadb79..08eb8dd092 100644
--- a/bundles/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/StatsGenerator.java
+++ b/bundles/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/StatsGenerator.java
@@ -78,13 +78,21 @@ void generateNATIVEMacros(Class clazz) {
output(className);
outputln("_NATIVE_EXIT(env, that, func) ");
outputln("#else");
+ output("#ifndef ");
+ output(className);
+ outputln("_NATIVE_ENTER");
output("#define ");
output(className);
outputln("_NATIVE_ENTER(env, that, func) ");
+ outputln("#endif");
+ output("#ifndef ");
+ output(className);
+ outputln("_NATIVE_EXIT");
output("#define ");
output(className);
outputln("_NATIVE_EXIT(env, that, func) ");
outputln("#endif");
+ outputln("#endif");
outputln();
}
diff --git a/bundles/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/org.eclipse.swt.internal.properties b/bundles/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/org.eclipse.swt.internal.properties
index 44d04d8074..28acf489ec 100644
--- a/bundles/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/org.eclipse.swt.internal.properties
+++ b/bundles/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/org.eclipse.swt.internal.properties
@@ -47,4 +47,6 @@ org.eclipse.swt.internal.opengl.glx.GLX,../org.eclipse.swt/Eclipse SWT OpenGL/gl
org.eclipse.swt.internal.opengl.win32.WGL,../org.eclipse.swt/Eclipse SWT OpenGL/win32/library/,\
org.eclipse.swt.internal.opengl.carbon.AGL,../org.eclipse.swt/Eclipse SWT OpenGL/carbon/library/,\
org.eclipse.swt.internal.C,../org.eclipse.swt/Eclipse SWT PI/common/library/,\
-org.eclipse.swt.internal.cocoa.Cocoa,../org.eclipse.swt/Eclipse SWT PI/carbon/library/ \ No newline at end of file
+org.eclipse.swt.internal.wpf.OS,../org.eclipse.swt/Eclipse SWT PI/wpf/library/,\
+org.eclipse.swt.internal.wpf.COM,../org.eclipse.swt/Eclipse SWT PI/wpf/library/,\
+org.eclipse.swt.internal.cocoa.Cocoa,../org.eclipse.swt/Eclipse SWT PI/carbon/library/
diff --git a/bundles/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/org.eclipse.swt.internal.wpf.COM.properties b/bundles/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/org.eclipse.swt.internal.wpf.COM.properties
new file mode 100644
index 0000000000..c2c3d91bac
--- /dev/null
+++ b/bundles/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/org.eclipse.swt.internal.wpf.COM.properties
@@ -0,0 +1,3343 @@
+###############################################################################
+# Copyright (c) 2000, 2006 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+org_eclipse_swt_internal_wpf_COM=
+COM_OleInitialize=
+COM_OleInitialize_0=cast=LPVOID
+
+COM_OleUninitialize=
+
+
+org_eclipse_swt_internal_wpf_ICONINFO=flags=no_gen
+ICONINFO_fIcon=
+ICONINFO_xHotspot=
+ICONINFO_yHotspot=
+ICONINFO_hbmMask=
+ICONINFO_hbmColor=
+
+org_eclipse_swt_internal_wpf_OS=flags=no_gen
+OS_AccessText_AccessKey=
+OS_AccessText_AccessKey_0=
+
+OS_AccessText_Text=
+OS_AccessText_Text_0=
+OS_AccessText_Text_1=
+
+OS_ApplicationCommands_Cut=
+
+OS_ApplicationCommands_Paste=
+
+OS_ApplicationCommands_Redo=
+
+OS_ApplicationCommands_Undo=
+
+OS_Application_Dispatcher=
+OS_Application_Dispatcher_0=
+
+OS_Application_Run=
+OS_Application_Run_0=
+
+OS_Application_Shutdown=
+OS_Application_Shutdown_0=
+
+OS_Application_ShutdownMode=
+OS_Application_ShutdownMode_0=
+OS_Application_ShutdownMode_1=
+
+OS_Application_Windows=
+OS_Application_Windows_0=
+
+OS_BindingExpression_UpdateTarget=
+OS_BindingExpression_UpdateTarget_0=
+
+OS_Binding_Converter=
+OS_Binding_Converter_0=
+OS_Binding_Converter_1=
+
+OS_Binding_ConverterParameter=
+OS_Binding_ConverterParameter_0=
+OS_Binding_ConverterParameter_1=
+
+OS_BitmapImage_BeginInit=
+OS_BitmapImage_BeginInit_0=
+
+OS_BitmapImage_CreateOptions=
+OS_BitmapImage_CreateOptions_0=
+OS_BitmapImage_CreateOptions_1=
+
+OS_BitmapImage_EndInit=
+OS_BitmapImage_EndInit_0=
+
+OS_BitmapImage_UriSource=
+OS_BitmapImage_UriSource_0=
+OS_BitmapImage_UriSource_1=
+
+OS_BitmapPalette_Colors=
+OS_BitmapPalette_Colors_0=
+
+OS_BitmapSource_Clone=
+OS_BitmapSource_Clone_0=
+
+OS_BitmapSource_CopyPixels=
+OS_BitmapSource_CopyPixels_0=
+OS_BitmapSource_CopyPixels_1=
+OS_BitmapSource_CopyPixels_2=
+OS_BitmapSource_CopyPixels_3=
+OS_BitmapSource_CopyPixels_4=
+
+OS_BitmapSource_Create=
+OS_BitmapSource_Create_0=
+OS_BitmapSource_Create_1=
+OS_BitmapSource_Create_2=
+OS_BitmapSource_Create_3=
+OS_BitmapSource_Create_4=
+OS_BitmapSource_Create_5=
+OS_BitmapSource_Create_6=
+OS_BitmapSource_Create_7=
+OS_BitmapSource_Create_8=
+
+OS_BitmapSource_Format=
+OS_BitmapSource_Format_0=
+
+OS_BitmapSource_Palette=
+OS_BitmapSource_Palette_0=
+
+OS_BitmapSource_PixelHeight=
+OS_BitmapSource_PixelHeight_0=
+
+OS_BitmapSource_PixelWidth=
+OS_BitmapSource_PixelWidth_0=
+
+OS_Bitmap_GetHicon=
+OS_Bitmap_GetHicon_0=
+
+OS_Border_typeid=
+
+OS_Brush_Opacity=
+OS_Brush_Opacity_0=
+OS_Brush_Opacity_1=
+
+OS_Brushes_Black=
+
+OS_Brushes_LightSkyBlue=
+
+OS_Brushes_Navy=
+
+OS_Brushes_Transparent=
+
+OS_Brushes_White=
+
+OS_ButtonBase_Click=
+OS_ButtonBase_Click_0=
+OS_ButtonBase_Click_1=
+
+OS_Button_1IsDefault__I=
+OS_Button_1IsDefault__I_0=
+
+OS_Button_1IsDefault__IZ=
+OS_Button_1IsDefault__IZ_0=
+OS_Button_1IsDefault__IZ_1=
+
+OS_CancelEventArgs_Cancel=
+OS_CancelEventArgs_Cancel_0=
+OS_CancelEventArgs_Cancel_1=
+
+OS_Canvas_GetLeft=
+OS_Canvas_GetLeft_0=
+
+OS_Canvas_GetTop=
+OS_Canvas_GetTop_0=
+
+OS_Canvas_SetLeft=
+OS_Canvas_SetLeft_0=
+OS_Canvas_SetLeft_1=
+
+OS_Canvas_SetTop=
+OS_Canvas_SetTop_0=
+OS_Canvas_SetTop_1=
+
+OS_CharacterHit_FirstCharacterIndex=
+OS_CharacterHit_FirstCharacterIndex_0=
+
+OS_CharacterHit_TrailingLength=
+OS_CharacterHit_TrailingLength_0=
+
+OS_CheckBox_typeid=
+
+OS_Clipboard_GetText=
+
+OS_ColorDialog_AnyColor=
+OS_ColorDialog_AnyColor_0=
+OS_ColorDialog_AnyColor_1=
+
+OS_ColorDialog_1Color__I=
+OS_ColorDialog_1Color__I_0=
+
+OS_ColorDialog_1Color__II=
+OS_ColorDialog_1Color__II_0=
+OS_ColorDialog_1Color__II_1=
+
+OS_ColorDialog_1CustomColors__I=
+OS_ColorDialog_1CustomColors__I_0=
+
+OS_ColorDialog_1CustomColors__II=
+OS_ColorDialog_1CustomColors__II_0=
+OS_ColorDialog_1CustomColors__II_1=
+
+OS_ColorList_Add=
+OS_ColorList_Add_0=
+OS_ColorList_Add_1=
+
+OS_ColorList_Count=
+OS_ColorList_Count_0=
+
+OS_ColorList_Current=
+OS_ColorList_Current_0=
+
+OS_ColorList_GetEnumerator=
+OS_ColorList_GetEnumerator_0=
+
+OS_Color_A=
+OS_Color_A_0=
+
+OS_Color_B=
+OS_Color_B_0=
+
+OS_Color_FromArgb=
+OS_Color_FromArgb_0=
+OS_Color_FromArgb_1=
+OS_Color_FromArgb_2=
+OS_Color_FromArgb_3=
+
+OS_Color_G=
+OS_Color_G_0=
+
+OS_Color_R=
+OS_Color_R_0=
+
+OS_Colors_Black=
+
+OS_Colors_Blue=
+
+OS_Colors_Cyan=
+
+OS_Colors_DarkGray=
+
+OS_Colors_Green=
+
+OS_Colors_LightSkyBlue=
+
+OS_Colors_Lime=
+
+OS_Colors_Magenta=
+
+OS_Colors_Maroon=
+
+OS_Colors_Navy=
+
+OS_Colors_Olive=
+
+OS_Colors_Purple=
+
+OS_Colors_Red=
+
+OS_Colors_Silver=
+
+OS_Colors_Teal=
+
+OS_Colors_Transparent=
+
+OS_Colors_White=
+
+OS_Colors_Yellow=
+
+OS_ColumnDefinitionCollection_Add=
+OS_ColumnDefinitionCollection_Add_0=
+OS_ColumnDefinitionCollection_Add_1=
+
+OS_ColumnDefinition_Width=
+OS_ColumnDefinition_Width_0=
+OS_ColumnDefinition_Width_1=
+
+OS_ComboBox_1IsDropDownOpen__I=
+OS_ComboBox_1IsDropDownOpen__I_0=
+
+OS_ComboBox_1IsDropDownOpen__IZ=
+OS_ComboBox_1IsDropDownOpen__IZ_0=
+OS_ComboBox_1IsDropDownOpen__IZ_1=
+
+OS_ComboBox_IsEditable=
+OS_ComboBox_IsEditable_0=
+OS_ComboBox_IsEditable_1=
+
+OS_ComboBox_SelectionBoxItem=
+OS_ComboBox_SelectionBoxItem_0=
+
+OS_CommandManager_AddPreviewExecutedHandler=
+OS_CommandManager_AddPreviewExecutedHandler_0=
+OS_CommandManager_AddPreviewExecutedHandler_1=
+
+OS_CommonDialog_ShowDialog=
+OS_CommonDialog_ShowDialog_0=
+OS_CommonDialog_ShowDialog_1=
+
+OS_CompositeCollection_IndexOf=
+OS_CompositeCollection_IndexOf_0=
+OS_CompositeCollection_IndexOf_1=
+
+OS_CompositeCollection_Insert=
+OS_CompositeCollection_Insert_0=
+OS_CompositeCollection_Insert_1=
+OS_CompositeCollection_Insert_2=
+
+OS_CompositeCollection_Remove=
+OS_CompositeCollection_Remove_0=
+OS_CompositeCollection_Remove_1=
+
+OS_Console_Beep=
+
+OS_ContainerVisual_1Clip__I=
+OS_ContainerVisual_1Clip__I_0=
+
+OS_ContainerVisual_1Clip__II=
+OS_ContainerVisual_1Clip__II_0=
+OS_ContainerVisual_1Clip__II_1=
+
+OS_ContentControl_1Content__I=
+OS_ContentControl_1Content__I_0=
+
+OS_ContentControl_1Content__II=
+OS_ContentControl_1Content__II_0=
+OS_ContentControl_1Content__II_1=
+
+OS_ContentPresenter_Content=
+OS_ContentPresenter_Content_0=
+
+OS_ContentPresenter_typeid=
+
+OS_ContextMenuEventArgs_CursorLeft=
+OS_ContextMenuEventArgs_CursorLeft_0=
+
+OS_ContextMenuEventArgs_CursorTop=
+OS_ContextMenuEventArgs_CursorTop_0=
+
+OS_ContextMenu_Closed=
+OS_ContextMenu_Closed_0=
+OS_ContextMenu_Closed_1=
+
+OS_ContextMenu_HorizontalOffset=
+OS_ContextMenu_HorizontalOffset_0=
+OS_ContextMenu_HorizontalOffset_1=
+
+OS_ContextMenu_IsOpen=
+OS_ContextMenu_IsOpen_0=
+OS_ContextMenu_IsOpen_1=
+
+OS_ContextMenu_Opened=
+OS_ContextMenu_Opened_0=
+OS_ContextMenu_Opened_1=
+
+OS_ContextMenu_Placement=
+OS_ContextMenu_Placement_0=
+OS_ContextMenu_Placement_1=
+
+OS_ContextMenu_VerticalOffset=
+OS_ContextMenu_VerticalOffset_0=
+OS_ContextMenu_VerticalOffset_1=
+
+OS_Control_Background=
+OS_Control_Background_0=
+OS_Control_Background_1=
+
+OS_Control_BackgroundProperty=
+
+OS_Control_FontFamily=
+OS_Control_FontFamily_0=
+OS_Control_FontFamily_1=
+
+OS_Control_FontFamilyProperty=
+
+OS_Control_FontSize=
+OS_Control_FontSize_0=
+OS_Control_FontSize_1=
+
+OS_Control_FontSizeProperty=
+
+OS_Control_FontStretch=
+OS_Control_FontStretch_0=
+OS_Control_FontStretch_1=
+
+OS_Control_FontStretchProperty=
+
+OS_Control_FontStyle=
+OS_Control_FontStyle_0=
+OS_Control_FontStyle_1=
+
+OS_Control_FontStyleProperty=
+
+OS_Control_FontWeight=
+OS_Control_FontWeight_0=
+OS_Control_FontWeight_1=
+
+OS_Control_FontWeightProperty=
+
+OS_Control_Foreground=
+OS_Control_Foreground_0=
+OS_Control_Foreground_1=
+
+OS_Control_ForegroundProperty=
+
+OS_Control_1HorizontalContentAlignment__I=
+OS_Control_1HorizontalContentAlignment__I_0=
+
+OS_Control_1HorizontalContentAlignment__II=
+OS_Control_1HorizontalContentAlignment__II_0=
+OS_Control_1HorizontalContentAlignment__II_1=
+
+OS_Control_MouseDoubleClick=
+OS_Control_MouseDoubleClick_0=
+OS_Control_MouseDoubleClick_1=
+
+OS_Control_1Template__I=
+OS_Control_1Template__I_0=
+
+OS_Control_1Template__II=
+OS_Control_1Template__II_0=
+OS_Control_1Template__II_1=
+
+OS_CreateCursor=
+OS_CreateCursor_0=
+OS_CreateCursor_1=
+OS_CreateCursor_2=
+OS_CreateCursor_3=
+OS_CreateCursor_4=
+OS_CreateCursor_5=
+OS_CreateCursor_6=
+
+OS_CreateIconIndirect=
+OS_CreateIconIndirect_0=
+
+OS_CultureInfo_CurrentUICulture=
+
+OS_CursorInteropHelper_Create=
+OS_CursorInteropHelper_Create_0=
+
+OS_Cursors_AppStarting=
+
+OS_Cursors_Arrow=
+
+OS_Cursors_Cross=
+
+OS_Cursors_Hand=
+
+OS_Cursors_Help=
+
+OS_Cursors_IBeam=
+
+OS_Cursors_No=
+
+OS_Cursors_ScrollE=
+
+OS_Cursors_ScrollN=
+
+OS_Cursors_ScrollNE=
+
+OS_Cursors_ScrollNW=
+
+OS_Cursors_ScrollS=
+
+OS_Cursors_ScrollSE=
+
+OS_Cursors_ScrollSW=
+
+OS_Cursors_ScrollW=
+
+OS_Cursors_SizeAll=
+
+OS_Cursors_SizeNESW=
+
+OS_Cursors_SizeNS=
+
+OS_Cursors_SizeNWSE=
+
+OS_Cursors_SizeWE=
+
+OS_Cursors_UpArrow=
+
+OS_Cursors_Wait=
+
+OS_DashStyles_Dash=
+
+OS_DashStyles_DashDot=
+
+OS_DashStyles_DashDotDot=
+
+OS_DashStyles_Dot=
+
+OS_DashStyles_Solid=
+
+OS_DeleteGlobalRef=
+OS_DeleteGlobalRef_0=
+
+OS_DeleteObject=
+OS_DeleteObject_0=
+
+OS_DependencyObject_ClearValue=
+OS_DependencyObject_ClearValue_0=
+OS_DependencyObject_ClearValue_1=
+
+OS_DependencyObject_SetValue=
+OS_DependencyObject_SetValue_0=
+OS_DependencyObject_SetValue_1=
+OS_DependencyObject_SetValue_2=
+
+OS_DestroyIcon=
+OS_DestroyIcon_0=
+
+OS_DispatcherFrame_Continue=
+OS_DispatcherFrame_Continue_0=
+OS_DispatcherFrame_Continue_1=
+
+OS_DispatcherHookEventArgs_Operation=
+OS_DispatcherHookEventArgs_Operation_0=
+
+OS_DispatcherHooks_DispatcherInactive=
+OS_DispatcherHooks_DispatcherInactive_0=
+OS_DispatcherHooks_DispatcherInactive_1=
+
+OS_DispatcherHooks_OperationAborted=
+OS_DispatcherHooks_OperationAborted_0=
+OS_DispatcherHooks_OperationAborted_1=
+
+OS_DispatcherHooks_OperationCompleted=
+OS_DispatcherHooks_OperationCompleted_0=
+OS_DispatcherHooks_OperationCompleted_1=
+
+OS_DispatcherHooks_OperationPosted=
+OS_DispatcherHooks_OperationPosted_0=
+OS_DispatcherHooks_OperationPosted_1=
+
+OS_DispatcherOperation_Priority=
+OS_DispatcherOperation_Priority_0=
+
+OS_DispatcherTimer_Interval=
+OS_DispatcherTimer_Interval_0=
+OS_DispatcherTimer_Interval_1=
+
+OS_DispatcherTimer_Start=
+OS_DispatcherTimer_Start_0=
+
+OS_DispatcherTimer_Stop=
+OS_DispatcherTimer_Stop_0=
+
+OS_DispatcherTimer_1Tag__I=
+OS_DispatcherTimer_1Tag__I_0=
+
+OS_DispatcherTimer_1Tag__II=
+OS_DispatcherTimer_1Tag__II_0=
+OS_DispatcherTimer_1Tag__II_1=
+
+OS_DispatcherTimer_Tick=
+OS_DispatcherTimer_Tick_0=
+OS_DispatcherTimer_Tick_1=
+
+OS_Dispatcher_BeginInvoke=
+OS_Dispatcher_BeginInvoke_0=
+OS_Dispatcher_BeginInvoke_1=
+OS_Dispatcher_BeginInvoke_2=
+
+OS_Dispatcher_Hooks=
+OS_Dispatcher_Hooks_0=
+
+OS_Dispatcher_PushFrame=
+OS_Dispatcher_PushFrame_0=
+
+OS_DockPanel_DockProperty=
+
+OS_DockPanel_typeid=
+
+OS_DoubleAnimationUsingKeyFrames_KeyFrames=
+OS_DoubleAnimationUsingKeyFrames_KeyFrames_0=
+
+OS_DoubleCollection_Add=
+OS_DoubleCollection_Add_0=
+OS_DoubleCollection_Add_1=
+
+OS_DoubleKeyFrameCollection_Add=
+OS_DoubleKeyFrameCollection_Add_0=
+OS_DoubleKeyFrameCollection_Add_1=
+
+OS_DrawingColor_FromArgb=
+OS_DrawingColor_FromArgb_0=
+OS_DrawingColor_FromArgb_1=
+OS_DrawingColor_FromArgb_2=
+OS_DrawingColor_FromArgb_3=
+
+OS_DrawingColor_ToArgb=
+OS_DrawingColor_ToArgb_0=
+
+OS_DrawingContext_Close=
+OS_DrawingContext_Close_0=
+
+OS_DrawingContext_DrawEllipse=
+OS_DrawingContext_DrawEllipse_0=
+OS_DrawingContext_DrawEllipse_1=
+OS_DrawingContext_DrawEllipse_2=
+OS_DrawingContext_DrawEllipse_3=
+OS_DrawingContext_DrawEllipse_4=
+OS_DrawingContext_DrawEllipse_5=
+
+OS_DrawingContext_DrawGeometry=
+OS_DrawingContext_DrawGeometry_0=
+OS_DrawingContext_DrawGeometry_1=
+OS_DrawingContext_DrawGeometry_2=
+OS_DrawingContext_DrawGeometry_3=
+
+OS_DrawingContext_DrawImage=
+OS_DrawingContext_DrawImage_0=
+OS_DrawingContext_DrawImage_1=
+OS_DrawingContext_DrawImage_2=
+
+OS_DrawingContext_DrawLine=
+OS_DrawingContext_DrawLine_0=
+OS_DrawingContext_DrawLine_1=
+OS_DrawingContext_DrawLine_2=
+OS_DrawingContext_DrawLine_3=
+
+OS_DrawingContext_DrawRectangle=
+OS_DrawingContext_DrawRectangle_0=
+OS_DrawingContext_DrawRectangle_1=
+OS_DrawingContext_DrawRectangle_2=
+OS_DrawingContext_DrawRectangle_3=
+
+OS_DrawingContext_DrawRoundedRectangle=
+OS_DrawingContext_DrawRoundedRectangle_0=
+OS_DrawingContext_DrawRoundedRectangle_1=
+OS_DrawingContext_DrawRoundedRectangle_2=
+OS_DrawingContext_DrawRoundedRectangle_3=
+OS_DrawingContext_DrawRoundedRectangle_4=
+OS_DrawingContext_DrawRoundedRectangle_5=
+
+OS_DrawingContext_DrawText=
+OS_DrawingContext_DrawText_0=
+OS_DrawingContext_DrawText_1=
+OS_DrawingContext_DrawText_2=
+
+OS_DrawingContext_Pop=
+OS_DrawingContext_Pop_0=
+
+OS_DrawingContext_PushClip=
+OS_DrawingContext_PushClip_0=
+OS_DrawingContext_PushClip_1=
+
+OS_DrawingContext_PushOpacity=
+OS_DrawingContext_PushOpacity_0=
+OS_DrawingContext_PushOpacity_1=
+
+OS_DrawingContext_PushTransform=
+OS_DrawingContext_PushTransform_0=
+OS_DrawingContext_PushTransform_1=
+
+OS_DrawingVisual_RenderOpen=
+OS_DrawingVisual_RenderOpen_0=
+
+OS_DrawingVisual_typeid=
+
+OS_EditingCommands_Backspace=
+
+OS_EditingCommands_Delete=
+
+OS_EditingCommands_DeleteNextWord=
+
+OS_EditingCommands_DeletePreviousWord=
+
+OS_Environment_ExpandEnvironmentVariables=
+OS_Environment_ExpandEnvironmentVariables_0=
+
+OS_ExecutedRoutedEventArgs_Command=
+OS_ExecutedRoutedEventArgs_Command_0=
+
+OS_ExecutedRoutedEventArgs_Handled=
+OS_ExecutedRoutedEventArgs_Handled_0=
+OS_ExecutedRoutedEventArgs_Handled_1=
+
+OS_Expander_Collapsed=
+OS_Expander_Collapsed_0=
+OS_Expander_Collapsed_1=
+
+OS_Expander_Expanded=
+OS_Expander_Expanded_0=
+OS_Expander_Expanded_1=
+
+OS_Expander_1IsExpanded__I=
+OS_Expander_1IsExpanded__I_0=
+
+OS_Expander_1IsExpanded__IZ=
+OS_Expander_1IsExpanded__IZ_0=
+OS_Expander_1IsExpanded__IZ_1=
+
+OS_FileDialog_FileName=
+OS_FileDialog_FileName_0=
+OS_FileDialog_FileName_1=
+
+OS_FileDialog_FileNames=
+OS_FileDialog_FileNames_0=
+
+OS_FileDialog_Filter=
+OS_FileDialog_Filter_0=
+OS_FileDialog_Filter_1=
+
+OS_FileDialog_InitialDirectory=
+OS_FileDialog_InitialDirectory_0=
+OS_FileDialog_InitialDirectory_1=
+
+OS_FileDialog_Title=
+OS_FileDialog_Title_0=
+OS_FileDialog_Title_1=
+
+OS_FileInfo_DirectoryName=
+OS_FileInfo_DirectoryName_0=
+
+OS_FileInfo_Name=
+OS_FileInfo_Name_0=
+
+OS_FontFamily_GetTypefaces=
+OS_FontFamily_GetTypefaces_0=
+
+OS_FontFamily_Source=
+OS_FontFamily_Source_0=
+
+OS_FontStretch_FromOpenTypeStretch=
+OS_FontStretch_FromOpenTypeStretch_0=
+
+OS_FontStretch_ToOpenTypeStretch=
+OS_FontStretch_ToOpenTypeStretch_0=
+
+OS_FontStretches_Normal=
+
+OS_FontStyles_Italic=
+
+OS_FontStyles_Normal=
+
+OS_FontStyles_Oblique=
+
+OS_FontWeight_FromOpenTypeWeight=
+OS_FontWeight_FromOpenTypeWeight_0=
+
+OS_FontWeight_ToOpenTypeWeight=
+OS_FontWeight_ToOpenTypeWeight_0=
+
+OS_FontWeights_Bold=
+
+OS_FontWeights_Normal=
+
+OS_Fonts_SystemTypefaces=
+
+OS_FormattedText_Baseline=
+OS_FormattedText_Baseline_0=
+
+OS_FormattedText_BuildGeometry=
+OS_FormattedText_BuildGeometry_0=
+OS_FormattedText_BuildGeometry_1=
+
+OS_FormattedText_BuildHighlightGeometry=
+OS_FormattedText_BuildHighlightGeometry_0=
+OS_FormattedText_BuildHighlightGeometry_1=
+
+OS_FormattedText_Height=
+OS_FormattedText_Height_0=
+
+OS_FormattedText_WidthIncludingTrailingWhitespace=
+OS_FormattedText_WidthIncludingTrailingWhitespace_0=
+
+OS_FormsCommonDialog_ShowDialog=
+OS_FormsCommonDialog_ShowDialog_0=
+
+OS_FrameworkContentElement_Parent=
+OS_FrameworkContentElement_Parent_0=
+
+OS_FrameworkContentElement_1Tag__I=
+OS_FrameworkContentElement_1Tag__I_0=
+
+OS_FrameworkContentElement_1Tag__II=
+OS_FrameworkContentElement_1Tag__II_0=
+OS_FrameworkContentElement_1Tag__II_1=
+
+OS_FrameworkContentElement_typeid=
+
+OS_FrameworkElementFactory_AppendChild=
+OS_FrameworkElementFactory_AppendChild_0=
+OS_FrameworkElementFactory_AppendChild_1=
+
+OS_FrameworkElementFactory_SetBinding=
+OS_FrameworkElementFactory_SetBinding_0=
+OS_FrameworkElementFactory_SetBinding_1=
+OS_FrameworkElementFactory_SetBinding_2=
+
+OS_FrameworkElementFactory_1SetValue__III=
+OS_FrameworkElementFactory_1SetValue__III_0=
+OS_FrameworkElementFactory_1SetValue__III_1=
+OS_FrameworkElementFactory_1SetValue__III_2=
+
+OS_FrameworkElementFactory_1SetValue__IIZ=
+OS_FrameworkElementFactory_1SetValue__IIZ_0=
+OS_FrameworkElementFactory_1SetValue__IIZ_1=
+OS_FrameworkElementFactory_1SetValue__IIZ_2=
+
+OS_FrameworkElementFactory_SetValueDock=
+OS_FrameworkElementFactory_SetValueDock_0=
+OS_FrameworkElementFactory_SetValueDock_1=
+OS_FrameworkElementFactory_SetValueDock_2=
+
+OS_FrameworkElementFactory_SetValueOrientation=
+OS_FrameworkElementFactory_SetValueOrientation_0=
+OS_FrameworkElementFactory_SetValueOrientation_1=
+OS_FrameworkElementFactory_SetValueOrientation_2=
+
+OS_FrameworkElementFactory_SetValueStretch=
+OS_FrameworkElementFactory_SetValueStretch_0=
+OS_FrameworkElementFactory_SetValueStretch_1=
+OS_FrameworkElementFactory_SetValueStretch_2=
+
+OS_FrameworkElementFactory_SetValueVerticalAlignment=
+OS_FrameworkElementFactory_SetValueVerticalAlignment_0=
+OS_FrameworkElementFactory_SetValueVerticalAlignment_1=
+OS_FrameworkElementFactory_SetValueVerticalAlignment_2=
+
+OS_FrameworkElementFactory_SetValueVisibility=
+OS_FrameworkElementFactory_SetValueVisibility_0=
+OS_FrameworkElementFactory_SetValueVisibility_1=
+OS_FrameworkElementFactory_SetValueVisibility_2=
+
+OS_FrameworkElement_ActualHeight=
+OS_FrameworkElement_ActualHeight_0=
+
+OS_FrameworkElement_ActualHeightProperty=
+
+OS_FrameworkElement_ActualWidth=
+OS_FrameworkElement_ActualWidth_0=
+
+OS_FrameworkElement_ActualWidthProperty=
+
+OS_FrameworkElement_BeginInit=
+OS_FrameworkElement_BeginInit_0=
+
+OS_FrameworkElement_BringIntoView=
+OS_FrameworkElement_BringIntoView_0=
+
+OS_FrameworkElement_ContextMenu=
+OS_FrameworkElement_ContextMenu_0=
+OS_FrameworkElement_ContextMenu_1=
+
+OS_FrameworkElement_ContextMenuClosing=
+OS_FrameworkElement_ContextMenuClosing_0=
+OS_FrameworkElement_ContextMenuClosing_1=
+
+OS_FrameworkElement_ContextMenuOpening=
+OS_FrameworkElement_ContextMenuOpening_0=
+OS_FrameworkElement_ContextMenuOpening_1=
+
+OS_FrameworkElement_Cursor=
+OS_FrameworkElement_Cursor_0=
+OS_FrameworkElement_Cursor_1=
+
+OS_FrameworkElement_CursorProperty=
+
+OS_FrameworkElement_GetBindingExpression=
+OS_FrameworkElement_GetBindingExpression_0=
+OS_FrameworkElement_GetBindingExpression_1=
+
+OS_FrameworkElement_1Height__I=
+OS_FrameworkElement_1Height__I_0=
+
+OS_FrameworkElement_1Height__ID=
+OS_FrameworkElement_1Height__ID_0=
+OS_FrameworkElement_1Height__ID_1=
+
+OS_FrameworkElement_HeightProperty=
+
+OS_FrameworkElement_HorizontalAlignment=
+OS_FrameworkElement_HorizontalAlignment_0=
+OS_FrameworkElement_HorizontalAlignment_1=
+
+OS_FrameworkElement_IsLoaded=
+OS_FrameworkElement_IsLoaded_0=
+
+OS_FrameworkElement_Loaded=
+OS_FrameworkElement_Loaded_0=
+OS_FrameworkElement_Loaded_1=
+
+OS_FrameworkElement_Margin=
+OS_FrameworkElement_Margin_0=
+OS_FrameworkElement_Margin_1=
+
+OS_FrameworkElement_MarginProperty=
+
+OS_FrameworkElement_1MinHeight__I=
+OS_FrameworkElement_1MinHeight__I_0=
+
+OS_FrameworkElement_1MinHeight__ID=
+OS_FrameworkElement_1MinHeight__ID_0=
+OS_FrameworkElement_1MinHeight__ID_1=
+
+OS_FrameworkElement_1MinWidth__I=
+OS_FrameworkElement_1MinWidth__I_0=
+
+OS_FrameworkElement_1MinWidth__ID=
+OS_FrameworkElement_1MinWidth__ID_0=
+OS_FrameworkElement_1MinWidth__ID_1=
+
+OS_FrameworkElement_Name=
+OS_FrameworkElement_Name_0=
+
+OS_FrameworkElement_NameProperty=
+
+OS_FrameworkElement_Parent=
+OS_FrameworkElement_Parent_0=
+
+OS_FrameworkElement_SizeChanged=
+OS_FrameworkElement_SizeChanged_0=
+OS_FrameworkElement_SizeChanged_1=
+
+OS_FrameworkElement_1Tag__I=
+OS_FrameworkElement_1Tag__I_0=
+
+OS_FrameworkElement_1Tag__II=
+OS_FrameworkElement_1Tag__II_0=
+OS_FrameworkElement_1Tag__II_1=
+
+OS_FrameworkElement_1ToolTip__I=
+OS_FrameworkElement_1ToolTip__I_0=
+
+OS_FrameworkElement_1ToolTip__II=
+OS_FrameworkElement_1ToolTip__II_0=
+OS_FrameworkElement_1ToolTip__II_1=
+
+OS_FrameworkElement_VerticalAlignment=
+OS_FrameworkElement_VerticalAlignment_0=
+OS_FrameworkElement_VerticalAlignment_1=
+
+OS_FrameworkElement_VerticalAlignmentProperty=
+
+OS_FrameworkElement_VisibilityProperty=
+
+OS_FrameworkElement_1Width__I=
+OS_FrameworkElement_1Width__I_0=
+
+OS_FrameworkElement_1Width__ID=
+OS_FrameworkElement_1Width__ID_0=
+OS_FrameworkElement_1Width__ID_1=
+
+OS_FrameworkElement_WidthProperty=
+
+OS_FrameworkElement_typeid=
+
+OS_FrameworkTemplate_FindName=
+OS_FrameworkTemplate_FindName_0=
+OS_FrameworkTemplate_FindName_1=
+OS_FrameworkTemplate_FindName_2=
+
+OS_FrameworkTemplate_VisualTree=
+OS_FrameworkTemplate_VisualTree_0=
+OS_FrameworkTemplate_VisualTree_1=
+
+OS_Freezable_CanFreeze=
+OS_Freezable_CanFreeze_0=
+
+OS_Freezable_Clone=
+OS_Freezable_Clone_0=
+
+OS_Freezable_Freeze=
+OS_Freezable_Freeze_0=
+
+OS_GCHandle_Free=
+OS_GCHandle_Free_0=
+
+OS_GeometryCollection_Add=
+OS_GeometryCollection_Add_0=
+OS_GeometryCollection_Add_1=
+
+OS_GeometryCollection_Clear=
+OS_GeometryCollection_Clear_0=
+
+OS_GeometryCollection_Count=
+OS_GeometryCollection_Count_0=
+
+OS_GeometryCollection_Remove=
+OS_GeometryCollection_Remove_0=
+OS_GeometryCollection_Remove_1=
+
+OS_GeometryGroup_1Children__I=
+OS_GeometryGroup_1Children__I_0=
+
+OS_GeometryGroup_1Children__II=
+OS_GeometryGroup_1Children__II_0=
+OS_GeometryGroup_1Children__II_1=
+
+OS_Geometry_Bounds=
+OS_Geometry_Bounds_0=
+
+OS_Geometry_Clone=
+OS_Geometry_Clone_0=
+
+OS_Geometry_FillContains=
+OS_Geometry_FillContains_0=
+OS_Geometry_FillContains_1=
+
+OS_Geometry_FillContainsWithDetail=
+OS_Geometry_FillContainsWithDetail_0=
+OS_Geometry_FillContainsWithDetail_1=
+
+OS_Geometry_GetFlattenedPathGeometry=
+OS_Geometry_GetFlattenedPathGeometry_0=
+
+OS_Geometry_IsEmpty=
+OS_Geometry_IsEmpty_0=
+
+OS_Geometry_StrokeContains=
+OS_Geometry_StrokeContains_0=
+OS_Geometry_StrokeContains_1=
+OS_Geometry_StrokeContains_2=
+
+OS_Geometry_1Transform__I=
+OS_Geometry_1Transform__I_0=
+
+OS_Geometry_1Transform__II=
+OS_Geometry_1Transform__II_0=
+OS_Geometry_1Transform__II_1=
+
+OS_GetCursorPos=
+OS_GetCursorPos_0=
+
+OS_GetIconInfo=
+OS_GetIconInfo_0=
+OS_GetIconInfo_1=
+
+OS_GetKeyboardState=
+OS_GetKeyboardState_0=
+
+OS_GetModuleHandleW=
+OS_GetModuleHandleW_0=
+
+OS_GlyphRun_BidiLevel=
+OS_GlyphRun_BidiLevel_0=
+
+OS_GradientBrush_MappingMode=
+OS_GradientBrush_MappingMode_0=
+OS_GradientBrush_MappingMode_1=
+
+OS_GradientBrush_SpreadMethod=
+OS_GradientBrush_SpreadMethod_0=
+OS_GradientBrush_SpreadMethod_1=
+
+OS_GridViewColumnCollection_Clear=
+OS_GridViewColumnCollection_Clear_0=
+
+OS_GridViewColumnCollection_Count=
+OS_GridViewColumnCollection_Count_0=
+
+OS_GridViewColumnCollection_IndexOf=
+OS_GridViewColumnCollection_IndexOf_0=
+OS_GridViewColumnCollection_IndexOf_1=
+
+OS_GridViewColumnCollection_Insert=
+OS_GridViewColumnCollection_Insert_0=
+OS_GridViewColumnCollection_Insert_1=
+OS_GridViewColumnCollection_Insert_2=
+
+OS_GridViewColumnCollection_Remove=
+OS_GridViewColumnCollection_Remove_0=
+OS_GridViewColumnCollection_Remove_1=
+
+OS_GridViewColumnCollection_default=
+OS_GridViewColumnCollection_default_0=
+OS_GridViewColumnCollection_default_1=
+
+OS_GridViewColumnHeader_Content=
+OS_GridViewColumnHeader_Content_0=
+OS_GridViewColumnHeader_Content_1=
+
+OS_GridViewColumn_ActualWidth=
+OS_GridViewColumn_ActualWidth_0=
+
+OS_GridViewColumn_1CellTemplate__I=
+OS_GridViewColumn_1CellTemplate__I_0=
+
+OS_GridViewColumn_1CellTemplate__II=
+OS_GridViewColumn_1CellTemplate__II_0=
+OS_GridViewColumn_1CellTemplate__II_1=
+
+OS_GridViewColumn_1Header__I=
+OS_GridViewColumn_1Header__I_0=
+
+OS_GridViewColumn_1Header__II=
+OS_GridViewColumn_1Header__II_0=
+OS_GridViewColumn_1Header__II_1=
+
+OS_GridViewColumn_1HeaderTemplate__I=
+OS_GridViewColumn_1HeaderTemplate__I_0=
+
+OS_GridViewColumn_1HeaderTemplate__II=
+OS_GridViewColumn_1HeaderTemplate__II_0=
+OS_GridViewColumn_1HeaderTemplate__II_1=
+
+OS_GridViewColumn_1Width__I=
+OS_GridViewColumn_1Width__I_0=
+
+OS_GridViewColumn_1Width__ID=
+OS_GridViewColumn_1Width__ID_0=
+OS_GridViewColumn_1Width__ID_1=
+
+OS_GridViewColumn_WidthProperty=
+
+OS_GridViewHeaderRowPresenter_ColumnsProperty=
+
+OS_GridViewHeaderRowPresenter_typeid=
+
+OS_GridViewRowPresenterBase_Columns=
+OS_GridViewRowPresenterBase_Columns_0=
+OS_GridViewRowPresenterBase_Columns_1=
+
+OS_GridViewRowPresenter_1Content__I=
+OS_GridViewRowPresenter_1Content__I_0=
+
+OS_GridViewRowPresenter_1Content__II=
+OS_GridViewRowPresenter_1Content__II_0=
+OS_GridViewRowPresenter_1Content__II_1=
+
+OS_GridViewRowPresenter_typeid=
+
+OS_GridView_AllowsColumnReorder=
+OS_GridView_AllowsColumnReorder_0=
+OS_GridView_AllowsColumnReorder_1=
+
+OS_GridView_ColumnHeaderContainerStyle=
+OS_GridView_ColumnHeaderContainerStyle_0=
+OS_GridView_ColumnHeaderContainerStyle_1=
+
+OS_GridView_Columns=
+OS_GridView_Columns_0=
+
+OS_Grid_ColumnDefinitions=
+OS_Grid_ColumnDefinitions_0=
+
+OS_Grid_RowDefinitions=
+OS_Grid_RowDefinitions_0=
+
+OS_Grid_SetColumn=
+OS_Grid_SetColumn_0=
+OS_Grid_SetColumn_1=
+
+OS_Grid_SetColumnSpan=
+OS_Grid_SetColumnSpan_0=
+OS_Grid_SetColumnSpan_1=
+
+OS_Grid_SetRow=
+OS_Grid_SetRow_0=
+OS_Grid_SetRow_1=
+
+OS_Grid_SetRowSpan=
+OS_Grid_SetRowSpan_0=
+OS_Grid_SetRowSpan_1=
+
+OS_HeaderedContentControl_1Header__I=
+OS_HeaderedContentControl_1Header__I_0=
+
+OS_HeaderedContentControl_1Header__II=
+OS_HeaderedContentControl_1Header__II_0=
+OS_HeaderedContentControl_1Header__II_1=
+
+OS_HeaderedItemsControl_1Header__I=
+OS_HeaderedItemsControl_1Header__I_0=
+
+OS_HeaderedItemsControl_1Header__II=
+OS_HeaderedItemsControl_1Header__II_0=
+OS_HeaderedItemsControl_1Header__II_1=
+
+OS_Hyperlink_Click=
+OS_Hyperlink_Click_0=
+OS_Hyperlink_Click_1=
+
+OS_ICollection_Count=
+OS_ICollection_Count_0=
+
+OS_IEnumerator_Current=
+OS_IEnumerator_Current_0=
+
+OS_IEnumerator_MoveNext=
+OS_IEnumerator_MoveNext_0=
+
+OS_IList_Add=
+OS_IList_Add_0=
+OS_IList_Add_1=
+
+OS_IList_GetEnumerator=
+OS_IList_GetEnumerator_0=
+
+OS_IList_default=
+OS_IList_default_0=
+OS_IList_default_1=
+
+OS_ImageSource_typeid=
+
+OS_Image_Source=
+OS_Image_Source_0=
+OS_Image_Source_1=
+
+OS_Image_SourceProperty=
+
+OS_Image_Stretch=
+OS_Image_Stretch_0=
+OS_Image_Stretch_1=
+
+OS_Image_StretchProperty=
+
+OS_Image_typeid=
+
+OS_Imaging_CreateBitmapSourceFromHIcon=
+OS_Imaging_CreateBitmapSourceFromHIcon_0=
+OS_Imaging_CreateBitmapSourceFromHIcon_1=
+OS_Imaging_CreateBitmapSourceFromHIcon_2=
+
+OS_IndexedGlyphRunCollection_Current=
+OS_IndexedGlyphRunCollection_Current_0=
+
+OS_IndexedGlyphRunCollection_GetEnumerator=
+OS_IndexedGlyphRunCollection_GetEnumerator_0=
+
+OS_IndexedGlyphRun_GlyphRun=
+OS_IndexedGlyphRun_GlyphRun_0=
+
+OS_IndexedGlyphRun_TextSourceCharacterIndex=
+OS_IndexedGlyphRun_TextSourceCharacterIndex_0=
+
+OS_IndexedGlyphRun_TextSourceLength=
+OS_IndexedGlyphRun_TextSourceLength_0=
+
+OS_InlineCollection_Add=
+OS_InlineCollection_Add_0=
+OS_InlineCollection_Add_1=
+
+OS_InlineCollection_Clear=
+OS_InlineCollection_Clear_0=
+
+OS_InputEventArgs_Timestamp=
+OS_InputEventArgs_Timestamp_0=
+
+OS_Int32Rect_Empty=
+
+OS_IntPtr_ToInt32=
+OS_IntPtr_ToInt32_0=
+
+OS_ItemCollection_Add=
+OS_ItemCollection_Add_0=
+OS_ItemCollection_Add_1=
+
+OS_ItemCollection_Clear=
+OS_ItemCollection_Clear_0=
+
+OS_ItemCollection_Count=
+OS_ItemCollection_Count_0=
+
+OS_ItemCollection_CurrentItem=
+OS_ItemCollection_CurrentItem_0=
+
+OS_ItemCollection_CurrentPosition=
+OS_ItemCollection_CurrentPosition_0=
+
+OS_ItemCollection_GetItemAt=
+OS_ItemCollection_GetItemAt_0=
+OS_ItemCollection_GetItemAt_1=
+
+OS_ItemCollection_IndexOf=
+OS_ItemCollection_IndexOf_0=
+OS_ItemCollection_IndexOf_1=
+
+OS_ItemCollection_Insert=
+OS_ItemCollection_Insert_0=
+OS_ItemCollection_Insert_1=
+OS_ItemCollection_Insert_2=
+
+OS_ItemCollection_Remove=
+OS_ItemCollection_Remove_0=
+OS_ItemCollection_Remove_1=
+
+OS_ItemCollection_RemoveAt=
+OS_ItemCollection_RemoveAt_0=
+OS_ItemCollection_RemoveAt_1=
+
+OS_ItemsControl_HasItems=
+OS_ItemsControl_HasItems_0=
+
+OS_ItemsControl_Items=
+OS_ItemsControl_Items_0=
+
+OS_ItemsControl_ItemsSource=
+OS_ItemsControl_ItemsSource_0=
+OS_ItemsControl_ItemsSource_1=
+
+OS_ItemsPresenter_typeid=
+
+OS_JNIGetObject=
+OS_JNIGetObject_0=
+
+OS_KeyEventArgs_IsDown=
+OS_KeyEventArgs_IsDown_0=
+
+OS_KeyEventArgs_IsRepeat=
+OS_KeyEventArgs_IsRepeat_0=
+
+OS_KeyEventArgs_IsToggled=
+OS_KeyEventArgs_IsToggled_0=
+
+OS_KeyEventArgs_Key=
+OS_KeyEventArgs_Key_0=
+
+OS_KeyEventArgs_SystemKey=
+OS_KeyEventArgs_SystemKey_0=
+
+OS_KeyInterop_VirtualKeyFromKey=
+OS_KeyInterop_VirtualKeyFromKey_0=
+
+OS_KeyTime_Uniform=
+
+OS_KeyboardDevice_Modifiers=
+OS_KeyboardDevice_Modifiers_0=
+
+OS_KeyboardEventArgs_KeyboardDevice=
+OS_KeyboardEventArgs_KeyboardDevice_0=
+
+OS_KeyboardNavigation_SetTabNavigation=
+OS_KeyboardNavigation_SetTabNavigation_0=
+OS_KeyboardNavigation_SetTabNavigation_1=
+
+OS_Keyboard_FocusedElement=
+
+OS_Keyboard_Modifiers=
+
+OS_ListBoxItem_1IsSelected__I=
+OS_ListBoxItem_1IsSelected__I_0=
+
+OS_ListBoxItem_1IsSelected__IZ=
+OS_ListBoxItem_1IsSelected__IZ_0=
+OS_ListBoxItem_1IsSelected__IZ_1=
+
+OS_ListBox_ScrollIntoView=
+OS_ListBox_ScrollIntoView_0=
+OS_ListBox_ScrollIntoView_1=
+
+OS_ListBox_SelectAll=
+OS_ListBox_SelectAll_0=
+
+OS_ListBox_SelectedItems=
+OS_ListBox_SelectedItems_0=
+
+OS_ListBox_SelectionMode=
+OS_ListBox_SelectionMode_0=
+OS_ListBox_SelectionMode_1=
+
+OS_ListBox_UnselectAll=
+OS_ListBox_UnselectAll_0=
+
+OS_ListView_View=
+OS_ListView_View_0=
+OS_ListView_View_1=
+
+OS_LoadImage=
+OS_LoadImage_0=
+OS_LoadImage_1=
+OS_LoadImage_2=
+OS_LoadImage_3=
+OS_LoadImage_4=
+OS_LoadImage_5=
+
+OS_MapVirtualKeyW=
+OS_MapVirtualKeyW_0=
+OS_MapVirtualKeyW_1=
+
+OS_MatrixTransform_1Matrix__I=
+OS_MatrixTransform_1Matrix__I_0=
+
+OS_MatrixTransform_1Matrix__II=
+OS_MatrixTransform_1Matrix__II_0=
+OS_MatrixTransform_1Matrix__II_1=
+
+OS_Matrix_Invert=
+OS_Matrix_Invert_0=
+
+OS_Matrix_IsIdentity=
+OS_Matrix_IsIdentity_0=
+
+OS_Matrix_1M11__I=
+OS_Matrix_1M11__I_0=
+
+OS_Matrix_1M11__ID=
+OS_Matrix_1M11__ID_0=
+OS_Matrix_1M11__ID_1=
+
+OS_Matrix_1M12__I=
+OS_Matrix_1M12__I_0=
+
+OS_Matrix_1M12__ID=
+OS_Matrix_1M12__ID_0=
+OS_Matrix_1M12__ID_1=
+
+OS_Matrix_1M21__I=
+OS_Matrix_1M21__I_0=
+
+OS_Matrix_1M21__ID=
+OS_Matrix_1M21__ID_0=
+OS_Matrix_1M21__ID_1=
+
+OS_Matrix_1M22__I=
+OS_Matrix_1M22__I_0=
+
+OS_Matrix_1M22__ID=
+OS_Matrix_1M22__ID_0=
+OS_Matrix_1M22__ID_1=
+
+OS_Matrix_Multiply=
+OS_Matrix_Multiply_0=
+OS_Matrix_Multiply_1=
+
+OS_Matrix_1OffsetX__I=
+OS_Matrix_1OffsetX__I_0=
+
+OS_Matrix_1OffsetX__ID=
+OS_Matrix_1OffsetX__ID_0=
+OS_Matrix_1OffsetX__ID_1=
+
+OS_Matrix_1OffsetY__I=
+OS_Matrix_1OffsetY__I_0=
+
+OS_Matrix_1OffsetY__ID=
+OS_Matrix_1OffsetY__ID_0=
+OS_Matrix_1OffsetY__ID_1=
+
+OS_Matrix_RotatePrepend=
+OS_Matrix_RotatePrepend_0=
+OS_Matrix_RotatePrepend_1=
+
+OS_Matrix_ScalePrepend=
+OS_Matrix_ScalePrepend_0=
+OS_Matrix_ScalePrepend_1=
+OS_Matrix_ScalePrepend_2=
+
+OS_Matrix_Transform=
+OS_Matrix_Transform_0=
+OS_Matrix_Transform_1=
+
+OS_Matrix_TranslatePrepend=
+OS_Matrix_TranslatePrepend_0=
+OS_Matrix_TranslatePrepend_1=
+OS_Matrix_TranslatePrepend_2=
+
+OS_MenuItem_Click=
+OS_MenuItem_Click_0=
+OS_MenuItem_Click_1=
+
+OS_MenuItem_Icon=
+OS_MenuItem_Icon_0=
+OS_MenuItem_Icon_1=
+
+OS_MenuItem_InputGestureText=
+OS_MenuItem_InputGestureText_0=
+OS_MenuItem_InputGestureText_1=
+
+OS_MenuItem_IsCheckable=
+OS_MenuItem_IsCheckable_0=
+OS_MenuItem_IsCheckable_1=
+
+OS_MenuItem_1IsChecked__I=
+OS_MenuItem_1IsChecked__I_0=
+
+OS_MenuItem_1IsChecked__IZ=
+OS_MenuItem_1IsChecked__IZ_0=
+OS_MenuItem_1IsChecked__IZ_1=
+
+OS_MenuItem_SubmenuClosed=
+OS_MenuItem_SubmenuClosed_0=
+OS_MenuItem_SubmenuClosed_1=
+
+OS_MenuItem_SubmenuOpened=
+OS_MenuItem_SubmenuOpened_0=
+OS_MenuItem_SubmenuOpened_1=
+
+OS_Menu_IsMainMenu=
+OS_Menu_IsMainMenu_0=
+OS_Menu_IsMainMenu_1=
+
+OS_MessageBox_Show=
+OS_MessageBox_Show_0=
+OS_MessageBox_Show_1=
+OS_MessageBox_Show_2=
+OS_MessageBox_Show_3=
+OS_MessageBox_Show_4=
+
+OS_MouseButtonEventArgs_ButtonState=
+OS_MouseButtonEventArgs_ButtonState_0=
+
+OS_MouseButtonEventArgs_ChangedButton=
+OS_MouseButtonEventArgs_ChangedButton_0=
+
+OS_MouseButtonEventArgs_ClickCount=
+OS_MouseButtonEventArgs_ClickCount_0=
+
+OS_MouseEventArgs_GetPosition=
+OS_MouseEventArgs_GetPosition_0=
+OS_MouseEventArgs_GetPosition_1=
+
+OS_MouseEventArgs_LeftButton=
+OS_MouseEventArgs_LeftButton_0=
+
+OS_MouseEventArgs_MiddleButton=
+OS_MouseEventArgs_MiddleButton_0=
+
+OS_MouseEventArgs_RightButton=
+OS_MouseEventArgs_RightButton_0=
+
+OS_MouseEventArgs_XButton1=
+OS_MouseEventArgs_XButton1_0=
+
+OS_MouseEventArgs_XButton2=
+OS_MouseEventArgs_XButton2_0=
+
+OS_MouseWheelEventArgs_Delta=
+OS_MouseWheelEventArgs_Delta_0=
+
+OS_Mouse_DirectlyOver=
+
+OS_Mouse_GetPosition=
+OS_Mouse_GetPosition_0=
+
+OS_Mouse_LeftButton=
+
+OS_Mouse_MiddleButton=
+
+OS_Mouse_RightButton=
+
+OS_Mouse_SetCursor=
+OS_Mouse_SetCursor_0=
+
+OS_Mouse_XButton1=
+
+OS_Mouse_XButton2=
+
+OS_NewGlobalRef=
+OS_NewGlobalRef_0=
+
+OS_Object_Equals=
+OS_Object_Equals_0=
+OS_Object_Equals_1=
+
+OS_Object_GetType=
+OS_Object_GetType_0=
+
+OS_Object_ToString=
+OS_Object_ToString_0=
+
+OS_OpenFileDialog_Multiselect=
+OS_OpenFileDialog_Multiselect_0=
+OS_OpenFileDialog_Multiselect_1=
+
+OS_Panel_Background=
+OS_Panel_Background_0=
+OS_Panel_Background_1=
+
+OS_Panel_BackgroundProperty=
+
+OS_Panel_Children=
+OS_Panel_Children_0=
+
+OS_Panel_GetZIndex=
+OS_Panel_GetZIndex_0=
+
+OS_Panel_SetZIndex=
+OS_Panel_SetZIndex_0=
+OS_Panel_SetZIndex_1=
+
+OS_PasswordBox_1MaxLength__I=
+OS_PasswordBox_1MaxLength__I_0=
+
+OS_PasswordBox_1MaxLength__II=
+OS_PasswordBox_1MaxLength__II_0=
+OS_PasswordBox_1MaxLength__II_1=
+
+OS_PasswordBox_1Password__I=
+OS_PasswordBox_1Password__I_0=
+
+OS_PasswordBox_1Password__II=
+OS_PasswordBox_1Password__II_0=
+OS_PasswordBox_1Password__II_1=
+
+OS_PasswordBox_PasswordChanged=
+OS_PasswordBox_PasswordChanged_0=
+OS_PasswordBox_PasswordChanged_1=
+
+OS_PasswordBox_1PasswordChar__I=
+OS_PasswordBox_1PasswordChar__I_0=
+
+OS_PasswordBox_1PasswordChar__IC=
+OS_PasswordBox_1PasswordChar__IC_0=
+OS_PasswordBox_1PasswordChar__IC_1=
+
+OS_PasswordBox_Paste=
+OS_PasswordBox_Paste_0=
+
+OS_PathFigureCollection_Add=
+OS_PathFigureCollection_Add_0=
+OS_PathFigureCollection_Add_1=
+
+OS_PathFigureCollection_Count=
+OS_PathFigureCollection_Count_0=
+
+OS_PathFigure_1IsClosed__I=
+OS_PathFigure_1IsClosed__I_0=
+
+OS_PathFigure_1IsClosed__IZ=
+OS_PathFigure_1IsClosed__IZ_0=
+OS_PathFigure_1IsClosed__IZ_1=
+
+OS_PathFigure_1Segments__I=
+OS_PathFigure_1Segments__I_0=
+
+OS_PathFigure_1Segments__II=
+OS_PathFigure_1Segments__II_0=
+OS_PathFigure_1Segments__II_1=
+
+OS_PathFigure_StartPoint=
+OS_PathFigure_StartPoint_0=
+OS_PathFigure_StartPoint_1=
+
+OS_PathGeometry_AddGeometry=
+OS_PathGeometry_AddGeometry_0=
+OS_PathGeometry_AddGeometry_1=
+
+OS_PathGeometry_Bounds=
+OS_PathGeometry_Bounds_0=
+
+OS_PathGeometry_1Figures__I=
+OS_PathGeometry_1Figures__I_0=
+
+OS_PathGeometry_1Figures__II=
+OS_PathGeometry_1Figures__II_0=
+OS_PathGeometry_1Figures__II_1=
+
+OS_PathGeometry_FillRule=
+OS_PathGeometry_FillRule_0=
+OS_PathGeometry_FillRule_1=
+
+OS_PathSegmentCollection_Add=
+OS_PathSegmentCollection_Add_0=
+OS_PathSegmentCollection_Add_1=
+
+OS_PathSegmentCollection_Count=
+OS_PathSegmentCollection_Count_0=
+
+OS_Path_Data=
+OS_Path_Data_0=
+OS_Path_Data_1=
+
+OS_Path_Fill=
+OS_Path_Fill_0=
+OS_Path_Fill_1=
+
+OS_Path_Stretch=
+OS_Path_Stretch_0=
+OS_Path_Stretch_1=
+
+OS_Pen_1Brush__I=
+OS_Pen_1Brush__I_0=
+
+OS_Pen_1Brush__II=
+OS_Pen_1Brush__II_0=
+OS_Pen_1Brush__II_1=
+
+OS_Pen_DashCap=
+OS_Pen_DashCap_0=
+OS_Pen_DashCap_1=
+
+OS_Pen_DashStyle=
+OS_Pen_DashStyle_0=
+OS_Pen_DashStyle_1=
+
+OS_Pen_EndLineCap=
+OS_Pen_EndLineCap_0=
+OS_Pen_EndLineCap_1=
+
+OS_Pen_LineJoin=
+OS_Pen_LineJoin_0=
+OS_Pen_LineJoin_1=
+
+OS_Pen_StartLineCap=
+OS_Pen_StartLineCap_0=
+OS_Pen_StartLineCap_1=
+
+OS_Pen_Thickness=
+OS_Pen_Thickness_0=
+OS_Pen_Thickness_1=
+
+OS_PixelFormat_BitsPerPixel=
+OS_PixelFormat_BitsPerPixel_0=
+
+OS_PixelFormats_Bgr101010=
+
+OS_PixelFormats_Bgr24=
+
+OS_PixelFormats_Bgr32=
+
+OS_PixelFormats_Bgr555=
+
+OS_PixelFormats_Bgr565=
+
+OS_PixelFormats_Bgra32=
+
+OS_PixelFormats_BlackWhite=
+
+OS_PixelFormats_Default=
+
+OS_PixelFormats_Indexed1=
+
+OS_PixelFormats_Indexed2=
+
+OS_PixelFormats_Indexed4=
+
+OS_PixelFormats_Indexed8=
+
+OS_PixelFormats_Pbgra32=
+
+OS_PixelFormats_Rgb24=
+
+OS_PointCollection_Add=
+OS_PointCollection_Add_0=
+OS_PointCollection_Add_1=
+
+OS_Point_X=
+OS_Point_X_0=
+
+OS_Point_Y=
+OS_Point_Y_0=
+
+OS_PresentationSource_FromVisual=
+OS_PresentationSource_FromVisual_0=
+
+OS_ProgressBar_1IsIndeterminate__I=
+OS_ProgressBar_1IsIndeterminate__I_0=
+
+OS_ProgressBar_1IsIndeterminate__IZ=
+OS_ProgressBar_1IsIndeterminate__IZ_0=
+OS_ProgressBar_1IsIndeterminate__IZ_1=
+
+OS_ProgressBar_Orientation=
+OS_ProgressBar_Orientation_0=
+OS_ProgressBar_Orientation_1=
+
+OS_RangeBase_1LargeChange__I=
+OS_RangeBase_1LargeChange__I_0=
+
+OS_RangeBase_1LargeChange__ID=
+OS_RangeBase_1LargeChange__ID_0=
+OS_RangeBase_1LargeChange__ID_1=
+
+OS_RangeBase_1Maximum__I=
+OS_RangeBase_1Maximum__I_0=
+
+OS_RangeBase_1Maximum__ID=
+OS_RangeBase_1Maximum__ID_0=
+OS_RangeBase_1Maximum__ID_1=
+
+OS_RangeBase_1Minimum__I=
+OS_RangeBase_1Minimum__I_0=
+
+OS_RangeBase_1Minimum__ID=
+OS_RangeBase_1Minimum__ID_0=
+OS_RangeBase_1Minimum__ID_1=
+
+OS_RangeBase_1SmallChange__I=
+OS_RangeBase_1SmallChange__I_0=
+
+OS_RangeBase_1SmallChange__ID=
+OS_RangeBase_1SmallChange__ID_0=
+OS_RangeBase_1SmallChange__ID_1=
+
+OS_RangeBase_1Value__I=
+OS_RangeBase_1Value__I_0=
+
+OS_RangeBase_1Value__ID=
+OS_RangeBase_1Value__ID_0=
+OS_RangeBase_1Value__ID_1=
+
+OS_RangeBase_ValueChanged=
+OS_RangeBase_ValueChanged_0=
+OS_RangeBase_ValueChanged_1=
+
+OS_Rect_1Height__I=
+OS_Rect_1Height__I_0=
+
+OS_Rect_1Height__ID=
+OS_Rect_1Height__ID_0=
+OS_Rect_1Height__ID_1=
+
+OS_Rect_Intersect=
+OS_Rect_Intersect_0=
+OS_Rect_Intersect_1=
+
+OS_Rect_Union=
+OS_Rect_Union_0=
+OS_Rect_Union_1=
+
+OS_Rect_1Width__I=
+OS_Rect_1Width__I_0=
+
+OS_Rect_1Width__ID=
+OS_Rect_1Width__ID_0=
+OS_Rect_1Width__ID_1=
+
+OS_Rect_1X__I=
+OS_Rect_1X__I_0=
+
+OS_Rect_1X__ID=
+OS_Rect_1X__ID_0=
+OS_Rect_1X__ID_1=
+
+OS_Rect_1Y__I=
+OS_Rect_1Y__I_0=
+
+OS_Rect_1Y__ID=
+OS_Rect_1Y__ID_0=
+OS_Rect_1Y__ID_1=
+
+OS_RegistryKey_GetSubKeyNames=
+OS_RegistryKey_GetSubKeyNames_0=
+
+OS_RegistryKey_GetValue=
+OS_RegistryKey_GetValue_0=
+OS_RegistryKey_GetValue_1=
+
+OS_RegistryKey_OpenSubKey=
+OS_RegistryKey_OpenSubKey_0=
+OS_RegistryKey_OpenSubKey_1=
+
+OS_Registry_ClassesRoot=
+
+OS_RenderOptions_GetBitmapScalingMode=
+OS_RenderOptions_GetBitmapScalingMode_0=
+
+OS_RenderOptions_SetBitmapScalingMode=
+OS_RenderOptions_SetBitmapScalingMode_0=
+OS_RenderOptions_SetBitmapScalingMode_1=
+
+OS_RenderOptions_SetEdgeMode=
+OS_RenderOptions_SetEdgeMode_0=
+OS_RenderOptions_SetEdgeMode_1=
+
+OS_RenderTargetBitmap_Render=
+OS_RenderTargetBitmap_Render_0=
+OS_RenderTargetBitmap_Render_1=
+
+OS_RepeatBehavior_Forever=
+
+OS_RoutedEventArgs_Handled=
+OS_RoutedEventArgs_Handled_0=
+OS_RoutedEventArgs_Handled_1=
+
+OS_RoutedEventArgs_OriginalSource=
+OS_RoutedEventArgs_OriginalSource_0=
+
+OS_RoutedEventArgs_Source=
+OS_RoutedEventArgs_Source_0=
+
+OS_RoutedEventArgs_typeid=
+
+OS_RowDefinitionCollection_Add=
+OS_RowDefinitionCollection_Add_0=
+OS_RowDefinitionCollection_Add_1=
+
+OS_RowDefinition_Height=
+OS_RowDefinition_Height_0=
+OS_RowDefinition_Height_1=
+
+OS_Run_Text=
+OS_Run_Text_0=
+OS_Run_Text_1=
+
+OS_SWTCanvas_1Visual__I=
+OS_SWTCanvas_1Visual__I_0=
+
+OS_SWTCanvas_1Visual__II=
+OS_SWTCanvas_1Visual__II_0=
+OS_SWTCanvas_1Visual__II_1=
+
+OS_SWTTextRunProperties_ForegroundBrush=
+OS_SWTTextRunProperties_ForegroundBrush_0=
+OS_SWTTextRunProperties_ForegroundBrush_1=
+
+OS_ScrollBar_1Orientation__I=
+OS_ScrollBar_1Orientation__I_0=
+
+OS_ScrollBar_1Orientation__II=
+OS_ScrollBar_1Orientation__II_0=
+OS_ScrollBar_1Orientation__II_1=
+
+OS_ScrollBar_Scroll=
+OS_ScrollBar_Scroll_0=
+OS_ScrollBar_Scroll_1=
+
+OS_ScrollBar_1ViewportSize__I=
+OS_ScrollBar_1ViewportSize__I_0=
+
+OS_ScrollBar_1ViewportSize__ID=
+OS_ScrollBar_1ViewportSize__ID_0=
+OS_ScrollBar_1ViewportSize__ID_1=
+
+OS_ScrollBar_typeid=
+
+OS_ScrollEventArgs_ScrollEventType=
+OS_ScrollEventArgs_ScrollEventType_0=
+
+OS_ScrollViewer_typeid=
+
+OS_SelectionChangedEventArgs_AddedItems=
+OS_SelectionChangedEventArgs_AddedItems_0=
+
+OS_SelectionChangedEventArgs_RemovedItems=
+OS_SelectionChangedEventArgs_RemovedItems_0=
+
+OS_Selector_IsSynchronizedWithCurrentItem=
+OS_Selector_IsSynchronizedWithCurrentItem_0=
+OS_Selector_IsSynchronizedWithCurrentItem_1=
+
+OS_Selector_1SelectedIndex__I=
+OS_Selector_1SelectedIndex__I_0=
+
+OS_Selector_1SelectedIndex__II=
+OS_Selector_1SelectedIndex__II_0=
+OS_Selector_1SelectedIndex__II_1=
+
+OS_Selector_SelectedItem=
+OS_Selector_SelectedItem_0=
+
+OS_Selector_SelectedValue=
+OS_Selector_SelectedValue_0=
+
+OS_Selector_SelectionChanged=
+OS_Selector_SelectionChanged_0=
+OS_Selector_SelectionChanged_1=
+
+OS_SetCursorPos=
+OS_SetCursorPos_0=
+OS_SetCursorPos_1=
+
+OS_SetterBaseCollection_Add=
+OS_SetterBaseCollection_Add_0=
+OS_SetterBaseCollection_Add_1=
+
+OS_Shape_Fill=
+OS_Shape_Fill_0=
+OS_Shape_Fill_1=
+
+OS_Shape_Stroke=
+OS_Shape_Stroke_0=
+OS_Shape_Stroke_1=
+
+OS_Shape_StrokeThickness=
+OS_Shape_StrokeThickness_0=
+OS_Shape_StrokeThickness_1=
+
+OS_Size_1Height__I=
+OS_Size_1Height__I_0=
+
+OS_Size_1Height__ID=
+OS_Size_1Height__ID_0=
+OS_Size_1Height__ID_1=
+
+OS_Size_1Width__I=
+OS_Size_1Width__I_0=
+
+OS_Size_1Width__ID=
+OS_Size_1Width__ID_0=
+OS_Size_1Width__ID_1=
+
+OS_Slider_Orientation=
+OS_Slider_Orientation_0=
+OS_Slider_Orientation_1=
+
+OS_Slider_TickFrequency=
+OS_Slider_TickFrequency_0=
+OS_Slider_TickFrequency_1=
+
+OS_Slider_TickPlacement=
+OS_Slider_TickPlacement_0=
+OS_Slider_TickPlacement_1=
+
+OS_StackPanel_Orientation=
+OS_StackPanel_Orientation_0=
+OS_StackPanel_Orientation_1=
+
+OS_StackPanel_OrientationProperty=
+
+OS_StackPanel_typeid=
+
+OS_StreamGeometryContext_BeginFigure=
+OS_StreamGeometryContext_BeginFigure_0=
+OS_StreamGeometryContext_BeginFigure_1=
+OS_StreamGeometryContext_BeginFigure_2=
+OS_StreamGeometryContext_BeginFigure_3=
+
+OS_StreamGeometryContext_Close=
+OS_StreamGeometryContext_Close_0=
+
+OS_StreamGeometryContext_LineTo=
+OS_StreamGeometryContext_LineTo_0=
+OS_StreamGeometryContext_LineTo_1=
+OS_StreamGeometryContext_LineTo_2=
+OS_StreamGeometryContext_LineTo_3=
+
+OS_StreamGeometry_Open=
+OS_StreamGeometry_Open_0=
+
+OS_String_Length=
+OS_String_Length_0=
+
+OS_String_ToCharArray=
+OS_String_ToCharArray_0=
+
+OS_Style_Setters=
+OS_Style_Setters_0=
+
+OS_SystemColors_ActiveBorderColor=
+
+OS_SystemColors_ActiveCaptionColor=
+
+OS_SystemColors_ActiveCaptionTextColor=
+
+OS_SystemColors_ControlBrush=
+
+OS_SystemColors_ControlColor=
+
+OS_SystemColors_ControlDarkColor=
+
+OS_SystemColors_ControlDarkDarkColor=
+
+OS_SystemColors_ControlLightColor=
+
+OS_SystemColors_ControlTextBrush=
+
+OS_SystemColors_ControlTextColor=
+
+OS_SystemColors_GradientActiveCaptionColor=
+
+OS_SystemColors_GradientInactiveCaptionColor=
+
+OS_SystemColors_HighlightBrush=
+
+OS_SystemColors_HighlightColor=
+
+OS_SystemColors_HighlightTextColor=
+
+OS_SystemColors_InactiveCaptionColor=
+
+OS_SystemColors_InactiveCaptionTextColor=
+
+OS_SystemColors_InfoColor=
+
+OS_SystemColors_InfoTextColor=
+
+OS_SystemColors_WindowColor=
+
+OS_SystemColors_WindowTextColor=
+
+OS_SystemFonts_MessageFontFamily=
+
+OS_SystemFonts_MessageFontSize=
+
+OS_SystemFonts_MessageFontStyle=
+
+OS_SystemFonts_MessageFontWeight=
+
+OS_SystemParameters_HighContrast=
+
+OS_SystemParameters_HorizontalScrollBarButtonWidth=
+
+OS_SystemParameters_HorizontalScrollBarHeight=
+
+OS_SystemParameters_PrimaryScreenHeight=
+
+OS_SystemParameters_PrimaryScreenWidth=
+
+OS_SystemParameters_VerticalScrollBarButtonHeight=
+
+OS_SystemParameters_VerticalScrollBarWidth=
+
+OS_SystemParameters_VirtualScreenHeight=
+
+OS_SystemParameters_VirtualScreenLeft=
+
+OS_SystemParameters_VirtualScreenTop=
+
+OS_SystemParameters_VirtualScreenWidth=
+
+OS_SystemParameters_WheelScrollLines=
+
+OS_SystemParameters_WorkArea=
+
+OS_TabControl_TabStripPlacement=
+OS_TabControl_TabStripPlacement_0=
+OS_TabControl_TabStripPlacement_1=
+
+OS_TabItem_IsSelected=
+OS_TabItem_IsSelected_0=
+
+OS_TextBlock_Background=
+OS_TextBlock_Background_0=
+OS_TextBlock_Background_1=
+
+OS_TextBlock_BackgroundProperty=
+
+OS_TextBlock_FontFamily=
+OS_TextBlock_FontFamily_0=
+OS_TextBlock_FontFamily_1=
+
+OS_TextBlock_FontFamilyProperty=
+
+OS_TextBlock_FontSize=
+OS_TextBlock_FontSize_0=
+OS_TextBlock_FontSize_1=
+
+OS_TextBlock_FontSizeProperty=
+
+OS_TextBlock_FontStretch=
+OS_TextBlock_FontStretch_0=
+OS_TextBlock_FontStretch_1=
+
+OS_TextBlock_FontStretchProperty=
+
+OS_TextBlock_FontStyle=
+OS_TextBlock_FontStyle_0=
+OS_TextBlock_FontStyle_1=
+
+OS_TextBlock_FontStyleProperty=
+
+OS_TextBlock_FontWeight=
+OS_TextBlock_FontWeight_0=
+OS_TextBlock_FontWeight_1=
+
+OS_TextBlock_FontWeightProperty=
+
+OS_TextBlock_Foreground=
+OS_TextBlock_Foreground_0=
+OS_TextBlock_Foreground_1=
+
+OS_TextBlock_ForegroundProperty=
+
+OS_TextBlock_Inlines=
+OS_TextBlock_Inlines_0=
+
+OS_TextBlock_Text=
+OS_TextBlock_Text_0=
+OS_TextBlock_Text_1=
+
+OS_TextBlock_TextProperty=
+
+OS_TextBlock_typeid=
+
+OS_TextBoundsCollection_Current=
+OS_TextBoundsCollection_Current_0=
+
+OS_TextBoundsCollection_GetEnumerator=
+OS_TextBoundsCollection_GetEnumerator_0=
+
+OS_TextBounds_Rectangle=
+OS_TextBounds_Rectangle_0=
+
+OS_TextBoxBase_AcceptsReturn=
+OS_TextBoxBase_AcceptsReturn_0=
+OS_TextBoxBase_AcceptsReturn_1=
+
+OS_TextBoxBase_AcceptsTab=
+OS_TextBoxBase_AcceptsTab_0=
+OS_TextBoxBase_AcceptsTab_1=
+
+OS_TextBoxBase_AppendText=
+OS_TextBoxBase_AppendText_0=
+OS_TextBoxBase_AppendText_1=
+
+OS_TextBoxBase_Copy=
+OS_TextBoxBase_Copy_0=
+
+OS_TextBoxBase_Cut=
+OS_TextBoxBase_Cut_0=
+
+OS_TextBoxBase_HorizontalScrollBarVisibility=
+OS_TextBoxBase_HorizontalScrollBarVisibility_0=
+OS_TextBoxBase_HorizontalScrollBarVisibility_1=
+
+OS_TextBoxBase_1IsReadOnly__I=
+OS_TextBoxBase_1IsReadOnly__I_0=
+
+OS_TextBoxBase_1IsReadOnly__IZ=
+OS_TextBoxBase_1IsReadOnly__IZ_0=
+OS_TextBoxBase_1IsReadOnly__IZ_1=
+
+OS_TextBoxBase_Paste=
+OS_TextBoxBase_Paste_0=
+
+OS_TextBoxBase_ScrollToEnd=
+OS_TextBoxBase_ScrollToEnd_0=
+
+OS_TextBoxBase_ScrollToVerticalOffset=
+OS_TextBoxBase_ScrollToVerticalOffset_0=
+OS_TextBoxBase_ScrollToVerticalOffset_1=
+
+OS_TextBoxBase_SelectAll=
+OS_TextBoxBase_SelectAll_0=
+
+OS_TextBoxBase_TextChanged=
+OS_TextBoxBase_TextChanged_0=
+OS_TextBoxBase_TextChanged_1=
+
+OS_TextBoxBase_VerticalOffset=
+OS_TextBoxBase_VerticalOffset_0=
+
+OS_TextBoxBase_VerticalScrollBarVisibility=
+OS_TextBoxBase_VerticalScrollBarVisibility_0=
+OS_TextBoxBase_VerticalScrollBarVisibility_1=
+
+OS_TextBox_1CaretIndex__I=
+OS_TextBox_1CaretIndex__I_0=
+
+OS_TextBox_1CaretIndex__II=
+OS_TextBox_1CaretIndex__II_0=
+OS_TextBox_1CaretIndex__II_1=
+
+OS_TextBox_GetFirstVisibleLineIndex=
+OS_TextBox_GetFirstVisibleLineIndex_0=
+
+OS_TextBox_GetLineIndexFromCharacterIndex=
+OS_TextBox_GetLineIndexFromCharacterIndex_0=
+OS_TextBox_GetLineIndexFromCharacterIndex_1=
+
+OS_TextBox_GetRectFromCharacterIndex=
+OS_TextBox_GetRectFromCharacterIndex_0=
+OS_TextBox_GetRectFromCharacterIndex_1=
+
+OS_TextBox_LineCount=
+OS_TextBox_LineCount_0=
+
+OS_TextBox_1MaxLength__I=
+OS_TextBox_1MaxLength__I_0=
+
+OS_TextBox_1MaxLength__II=
+OS_TextBox_1MaxLength__II_0=
+OS_TextBox_1MaxLength__II_1=
+
+OS_TextBox_ScrollToLine=
+OS_TextBox_ScrollToLine_0=
+OS_TextBox_ScrollToLine_1=
+
+OS_TextBox_Select=
+OS_TextBox_Select_0=
+OS_TextBox_Select_1=
+OS_TextBox_Select_2=
+
+OS_TextBox_1SelectedText__I=
+OS_TextBox_1SelectedText__I_0=
+
+OS_TextBox_1SelectedText__II=
+OS_TextBox_1SelectedText__II_0=
+OS_TextBox_1SelectedText__II_1=
+
+OS_TextBox_1SelectionLength__I=
+OS_TextBox_1SelectionLength__I_0=
+
+OS_TextBox_1SelectionLength__II=
+OS_TextBox_1SelectionLength__II_0=
+OS_TextBox_1SelectionLength__II_1=
+
+OS_TextBox_1SelectionStart__I=
+OS_TextBox_1SelectionStart__I_0=
+
+OS_TextBox_1SelectionStart__II=
+OS_TextBox_1SelectionStart__II_0=
+OS_TextBox_1SelectionStart__II_1=
+
+OS_TextBox_1Text__I=
+OS_TextBox_1Text__I_0=
+
+OS_TextBox_1Text__II=
+OS_TextBox_1Text__II_0=
+OS_TextBox_1Text__II_1=
+
+OS_TextBox_TextWrapping=
+OS_TextBox_TextWrapping_0=
+OS_TextBox_TextWrapping_1=
+
+OS_TextCompositionEventArgs_ControlText=
+OS_TextCompositionEventArgs_ControlText_0=
+
+OS_TextCompositionEventArgs_Handled=
+OS_TextCompositionEventArgs_Handled_0=
+OS_TextCompositionEventArgs_Handled_1=
+
+OS_TextCompositionEventArgs_SystemText=
+OS_TextCompositionEventArgs_SystemText_0=
+
+OS_TextCompositionEventArgs_Text=
+OS_TextCompositionEventArgs_Text_0=
+
+OS_TextDecorationCollection_Add=
+OS_TextDecorationCollection_Add_0=
+OS_TextDecorationCollection_Add_1=
+
+OS_TextDecorations_Strikethrough=
+
+OS_TextDecorations_Underline=
+
+OS_TextFormatter_Create=
+
+OS_TextFormatter_FormatLine=
+OS_TextFormatter_FormatLine_0=
+OS_TextFormatter_FormatLine_1=
+OS_TextFormatter_FormatLine_2=
+OS_TextFormatter_FormatLine_3=
+OS_TextFormatter_FormatLine_4=
+OS_TextFormatter_FormatLine_5=
+
+OS_TextLine_Baseline=
+OS_TextLine_Baseline_0=
+
+OS_TextLine_Draw=
+OS_TextLine_Draw_0=
+OS_TextLine_Draw_1=
+OS_TextLine_Draw_2=
+OS_TextLine_Draw_3=
+
+OS_TextLine_GetCharacterHitFromDistance=
+OS_TextLine_GetCharacterHitFromDistance_0=
+OS_TextLine_GetCharacterHitFromDistance_1=
+
+OS_TextLine_GetDistanceFromCharacterHit=
+OS_TextLine_GetDistanceFromCharacterHit_0=
+OS_TextLine_GetDistanceFromCharacterHit_1=
+
+OS_TextLine_GetIndexedGlyphRuns=
+OS_TextLine_GetIndexedGlyphRuns_0=
+
+OS_TextLine_GetNextCaretCharacterHit=
+OS_TextLine_GetNextCaretCharacterHit_0=
+OS_TextLine_GetNextCaretCharacterHit_1=
+
+OS_TextLine_GetPreviousCaretCharacterHit=
+OS_TextLine_GetPreviousCaretCharacterHit_0=
+OS_TextLine_GetPreviousCaretCharacterHit_1=
+
+OS_TextLine_GetTextBounds=
+OS_TextLine_GetTextBounds_0=
+OS_TextLine_GetTextBounds_1=
+OS_TextLine_GetTextBounds_2=
+
+OS_TextLine_GetTextLineBreak=
+OS_TextLine_GetTextLineBreak_0=
+
+OS_TextLine_Height=
+OS_TextLine_Height_0=
+
+OS_TextLine_Length=
+OS_TextLine_Length_0=
+
+OS_TextLine_NewlineLength=
+OS_TextLine_NewlineLength_0=
+
+OS_TextLine_Start=
+OS_TextLine_Start_0=
+
+OS_TextLine_Width=
+OS_TextLine_Width_0=
+
+OS_TextLine_WidthIncludingTrailingWhitespace=
+OS_TextLine_WidthIncludingTrailingWhitespace_0=
+
+OS_TextTabPropertiesCollection_Add=
+OS_TextTabPropertiesCollection_Add_0=
+OS_TextTabPropertiesCollection_Add_1=
+
+OS_TileBrush_AlignmentX=
+OS_TileBrush_AlignmentX_0=
+OS_TileBrush_AlignmentX_1=
+
+OS_TileBrush_AlignmentY=
+OS_TileBrush_AlignmentY_0=
+OS_TileBrush_AlignmentY_1=
+
+OS_TileBrush_Stretch=
+OS_TileBrush_Stretch_0=
+OS_TileBrush_Stretch_1=
+
+OS_TileBrush_TileMode=
+OS_TileBrush_TileMode_0=
+OS_TileBrush_TileMode_1=
+
+OS_TileBrush_Viewport=
+OS_TileBrush_Viewport_0=
+OS_TileBrush_Viewport_1=
+
+OS_TileBrush_ViewportUnits=
+OS_TileBrush_ViewportUnits_0=
+OS_TileBrush_ViewportUnits_1=
+
+OS_TimeSpan_FromMilliseconds=
+OS_TimeSpan_FromMilliseconds_0=
+
+OS_Timeline_AutoReverse=
+OS_Timeline_AutoReverse_0=
+OS_Timeline_AutoReverse_1=
+
+OS_Timeline_Duration=
+OS_Timeline_Duration_0=
+OS_Timeline_Duration_1=
+
+OS_Timeline_RepeatBehavior=
+OS_Timeline_RepeatBehavior_0=
+OS_Timeline_RepeatBehavior_1=
+
+OS_ToUnicode=
+OS_ToUnicode_0=
+OS_ToUnicode_1=
+OS_ToUnicode_2=
+OS_ToUnicode_3=
+OS_ToUnicode_4=
+OS_ToUnicode_5=
+
+OS_ToggleButton_Checked=
+OS_ToggleButton_Checked_0=
+OS_ToggleButton_Checked_1=
+
+OS_ToggleButton_CheckedEvent=
+
+OS_ToggleButton_IndeterminateEvent=
+
+OS_ToggleButton_1IsChecked__I=
+OS_ToggleButton_1IsChecked__I_0=
+
+OS_ToggleButton_1IsChecked__IZ=
+OS_ToggleButton_1IsChecked__IZ_0=
+OS_ToggleButton_1IsChecked__IZ_1=
+
+OS_ToggleButton_IsCheckedNullSetter=
+OS_ToggleButton_IsCheckedNullSetter_0=
+
+OS_ToggleButton_IsThreeStateProperty=
+
+OS_ToggleButton_Unchecked=
+OS_ToggleButton_Unchecked_0=
+OS_ToggleButton_Unchecked_1=
+
+OS_ToggleButton_UncheckedEvent=
+
+OS_ToolBarTray_IsLocked=
+OS_ToolBarTray_IsLocked_0=
+OS_ToolBarTray_IsLocked_1=
+
+OS_ToolBarTray_Orientation=
+OS_ToolBarTray_Orientation_0=
+OS_ToolBarTray_Orientation_1=
+
+OS_ToolBarTray_ToolBars=
+OS_ToolBarTray_ToolBars_0=
+
+OS_ToolBar_SetOverflowMode=
+OS_ToolBar_SetOverflowMode_0=
+OS_ToolBar_SetOverflowMode_1=
+
+OS_TransformCollection_Add=
+OS_TransformCollection_Add_0=
+OS_TransformCollection_Add_1=
+
+OS_TransformGroup_Children=
+OS_TransformGroup_Children_0=
+
+OS_Transform_Clone=
+OS_Transform_Clone_0=
+
+OS_TreeViewItem_CollapsedEvent=
+
+OS_TreeViewItem_ExpandedEvent=
+
+OS_TreeViewItem_1IsExpanded__I=
+OS_TreeViewItem_1IsExpanded__I_0=
+
+OS_TreeViewItem_1IsExpanded__IZ=
+OS_TreeViewItem_1IsExpanded__IZ_0=
+OS_TreeViewItem_1IsExpanded__IZ_1=
+
+OS_TreeViewItem_IsSelected=
+OS_TreeViewItem_IsSelected_0=
+OS_TreeViewItem_IsSelected_1=
+
+OS_TreeView_SelectedItem=
+OS_TreeView_SelectedItem_0=
+
+OS_TreeView_SelectedItemChanged=
+OS_TreeView_SelectedItemChanged_0=
+OS_TreeView_SelectedItemChanged_1=
+
+OS_TreeView_typeid=
+
+OS_TypeConverter_ConvertFromString=
+OS_TypeConverter_ConvertFromString_0=
+OS_TypeConverter_ConvertFromString_1=
+
+OS_TypeConverter_ConvertToString=
+OS_TypeConverter_ConvertToString_0=
+OS_TypeConverter_ConvertToString_1=
+
+OS_TypeDescriptor_GetConverter=
+OS_TypeDescriptor_GetConverter_0=
+
+OS_Type_FullName=
+OS_Type_FullName_0=
+
+OS_Type_IsInstanceOfType=
+OS_Type_IsInstanceOfType_0=
+OS_Type_IsInstanceOfType_1=
+
+OS_TypefaceCollection_Count=
+OS_TypefaceCollection_Count_0=
+
+OS_TypefaceCollection_Current=
+OS_TypefaceCollection_Current_0=
+
+OS_TypefaceCollection_GetEnumerator=
+OS_TypefaceCollection_GetEnumerator_0=
+
+OS_Typeface_FontFamily=
+OS_Typeface_FontFamily_0=
+
+OS_Typeface_Stretch=
+OS_Typeface_Stretch_0=
+
+OS_Typeface_Style=
+OS_Typeface_Style_0=
+
+OS_Typeface_Weight=
+OS_Typeface_Weight_0=
+
+OS_UIElementCollection_Add=
+OS_UIElementCollection_Add_0=
+OS_UIElementCollection_Add_1=
+
+OS_UIElementCollection_Contains=
+OS_UIElementCollection_Contains_0=
+OS_UIElementCollection_Contains_1=
+
+OS_UIElementCollection_Count=
+OS_UIElementCollection_Count_0=
+
+OS_UIElementCollection_Current=
+OS_UIElementCollection_Current_0=
+
+OS_UIElementCollection_GetEnumerator=
+OS_UIElementCollection_GetEnumerator_0=
+
+OS_UIElementCollection_IndexOf=
+OS_UIElementCollection_IndexOf_0=
+OS_UIElementCollection_IndexOf_1=
+
+OS_UIElementCollection_Insert=
+OS_UIElementCollection_Insert_0=
+OS_UIElementCollection_Insert_1=
+OS_UIElementCollection_Insert_2=
+
+OS_UIElementCollection_Remove=
+OS_UIElementCollection_Remove_0=
+OS_UIElementCollection_Remove_1=
+
+OS_UIElement_AddHandler=
+OS_UIElement_AddHandler_0=
+OS_UIElement_AddHandler_1=
+OS_UIElement_AddHandler_2=
+
+OS_UIElement_BeginAnimation=
+OS_UIElement_BeginAnimation_0=
+OS_UIElement_BeginAnimation_1=
+OS_UIElement_BeginAnimation_2=
+
+OS_UIElement_CaptureMouse=
+OS_UIElement_CaptureMouse_0=
+
+OS_UIElement_Clip=
+OS_UIElement_Clip_0=
+OS_UIElement_Clip_1=
+
+OS_UIElement_ClipToBounds=
+OS_UIElement_ClipToBounds_0=
+OS_UIElement_ClipToBounds_1=
+
+OS_UIElement_DesiredSize=
+OS_UIElement_DesiredSize_0=
+
+OS_UIElement_Focus=
+OS_UIElement_Focus_0=
+
+OS_UIElement_Focusable=
+OS_UIElement_Focusable_0=
+OS_UIElement_Focusable_1=
+
+OS_UIElement_InputHitTest=
+OS_UIElement_InputHitTest_0=
+OS_UIElement_InputHitTest_1=
+
+OS_UIElement_InvalidateVisual=
+OS_UIElement_InvalidateVisual_0=
+
+OS_UIElement_1IsEnabled__I=
+OS_UIElement_1IsEnabled__I_0=
+
+OS_UIElement_1IsEnabled__IZ=
+OS_UIElement_1IsEnabled__IZ_0=
+OS_UIElement_1IsEnabled__IZ_1=
+
+OS_UIElement_IsFocused=
+OS_UIElement_IsFocused_0=
+
+OS_UIElement_IsKeyboardFocused=
+OS_UIElement_IsKeyboardFocused_0=
+
+OS_UIElement_IsMouseOver=
+OS_UIElement_IsMouseOver_0=
+
+OS_UIElement_IsVisible=
+OS_UIElement_IsVisible_0=
+
+OS_UIElement_KeyDown=
+OS_UIElement_KeyDown_0=
+OS_UIElement_KeyDown_1=
+
+OS_UIElement_KeyUp=
+OS_UIElement_KeyUp_0=
+OS_UIElement_KeyUp_1=
+
+OS_UIElement_Measure=
+OS_UIElement_Measure_0=
+OS_UIElement_Measure_1=
+
+OS_UIElement_MouseDown=
+OS_UIElement_MouseDown_0=
+OS_UIElement_MouseDown_1=
+
+OS_UIElement_MouseEnter=
+OS_UIElement_MouseEnter_0=
+OS_UIElement_MouseEnter_1=
+
+OS_UIElement_MouseLeave=
+OS_UIElement_MouseLeave_0=
+OS_UIElement_MouseLeave_1=
+
+OS_UIElement_MouseMove=
+OS_UIElement_MouseMove_0=
+OS_UIElement_MouseMove_1=
+
+OS_UIElement_MouseUp=
+OS_UIElement_MouseUp_0=
+OS_UIElement_MouseUp_1=
+
+OS_UIElement_MouseWheel=
+OS_UIElement_MouseWheel_0=
+OS_UIElement_MouseWheel_1=
+
+OS_UIElement_OpacityProperty=
+
+OS_UIElement_PreviewGotKeyboardFocus=
+OS_UIElement_PreviewGotKeyboardFocus_0=
+OS_UIElement_PreviewGotKeyboardFocus_1=
+
+OS_UIElement_PreviewLostKeyboardFocus=
+OS_UIElement_PreviewLostKeyboardFocus_0=
+OS_UIElement_PreviewLostKeyboardFocus_1=
+
+OS_UIElement_PreviewMouseDown=
+OS_UIElement_PreviewMouseDown_0=
+OS_UIElement_PreviewMouseDown_1=
+
+OS_UIElement_PreviewMouseMove=
+OS_UIElement_PreviewMouseMove_0=
+OS_UIElement_PreviewMouseMove_1=
+
+OS_UIElement_PreviewMouseUp=
+OS_UIElement_PreviewMouseUp_0=
+OS_UIElement_PreviewMouseUp_1=
+
+OS_UIElement_PreviewMouseWheel=
+OS_UIElement_PreviewMouseWheel_0=
+OS_UIElement_PreviewMouseWheel_1=
+
+OS_UIElement_PreviewTextInput=
+OS_UIElement_PreviewTextInput_0=
+OS_UIElement_PreviewTextInput_1=
+
+OS_UIElement_ReleaseMouseCapture=
+OS_UIElement_ReleaseMouseCapture_0=
+
+OS_UIElement_TextInput=
+OS_UIElement_TextInput_0=
+OS_UIElement_TextInput_1=
+
+OS_UIElement_TranslatePoint=
+OS_UIElement_TranslatePoint_0=
+OS_UIElement_TranslatePoint_1=
+OS_UIElement_TranslatePoint_2=
+
+OS_UIElement_UpdateLayout=
+OS_UIElement_UpdateLayout_0=
+
+OS_UIElement_1Visibility__I=
+OS_UIElement_1Visibility__I_0=
+
+OS_UIElement_1Visibility__IB=
+OS_UIElement_1Visibility__IB_0=
+OS_UIElement_1Visibility__IB_1=
+
+OS_UIElement_VisibilityProperty=
+
+OS_VirtualizingStackPanel_VerticalOffset=
+OS_VirtualizingStackPanel_VerticalOffset_0=
+
+OS_VisualTreeHelper_GetChild=
+OS_VisualTreeHelper_GetChild_0=
+OS_VisualTreeHelper_GetChild_1=
+
+OS_VisualTreeHelper_GetChildrenCount=
+OS_VisualTreeHelper_GetChildrenCount_0=
+
+OS_VisualTreeHelper_GetParent=
+OS_VisualTreeHelper_GetParent_0=
+
+OS_Visual_PointFromScreen=
+OS_Visual_PointFromScreen_0=
+OS_Visual_PointFromScreen_1=
+
+OS_Visual_PointToScreen=
+OS_Visual_PointToScreen_0=
+OS_Visual_PointToScreen_1=
+
+OS_WindowCollection_Count=
+OS_WindowCollection_Count_0=
+
+OS_WindowCollection_Current=
+OS_WindowCollection_Current_0=
+
+OS_WindowCollection_GetEnumerator=
+OS_WindowCollection_GetEnumerator_0=
+
+OS_Window_Activate=
+OS_Window_Activate_0=
+
+OS_Window_Activated=
+OS_Window_Activated_0=
+OS_Window_Activated_1=
+
+OS_Window_AllowsTransparency=
+OS_Window_AllowsTransparency_0=
+OS_Window_AllowsTransparency_1=
+
+OS_Window_Close=
+OS_Window_Close_0=
+
+OS_Window_Closing=
+OS_Window_Closing_0=
+OS_Window_Closing_1=
+
+OS_Window_Deactivated=
+OS_Window_Deactivated_0=
+OS_Window_Deactivated_1=
+
+OS_Window_Hide=
+OS_Window_Hide_0=
+
+OS_Window_Icon=
+OS_Window_Icon_0=
+OS_Window_Icon_1=
+
+OS_Window_IsActive=
+OS_Window_IsActive_0=
+
+OS_Window_1Left__I=
+OS_Window_1Left__I_0=
+
+OS_Window_1Left__ID=
+OS_Window_1Left__ID_0=
+OS_Window_1Left__ID_1=
+
+OS_Window_LocationChanged=
+OS_Window_LocationChanged_0=
+OS_Window_LocationChanged_1=
+
+OS_Window_Owner=
+OS_Window_Owner_0=
+OS_Window_Owner_1=
+
+OS_Window_ResizeMode=
+OS_Window_ResizeMode_0=
+OS_Window_ResizeMode_1=
+
+OS_Window_Show=
+OS_Window_Show_0=
+
+OS_Window_ShowInTaskbar=
+OS_Window_ShowInTaskbar_0=
+OS_Window_ShowInTaskbar_1=
+
+OS_Window_1Title__I=
+OS_Window_1Title__I_0=
+
+OS_Window_1Title__II=
+OS_Window_1Title__II_0=
+OS_Window_1Title__II_1=
+
+OS_Window_1Top__I=
+OS_Window_1Top__I_0=
+
+OS_Window_1Top__ID=
+OS_Window_1Top__ID_0=
+OS_Window_1Top__ID_1=
+
+OS_Window_Topmost=
+OS_Window_Topmost_0=
+OS_Window_Topmost_1=
+
+OS_Window_1WindowState__I=
+OS_Window_1WindowState__I_0=
+
+OS_Window_1WindowState__II=
+OS_Window_1WindowState__II_0=
+OS_Window_1WindowState__II_1=
+
+OS_Window_WindowStyle=
+OS_Window_WindowStyle_0=
+OS_Window_WindowStyle_1=
+
+OS_WriteableBitmap_WritePixels=
+OS_WriteableBitmap_WritePixels_0=
+OS_WriteableBitmap_WritePixels_1=
+OS_WriteableBitmap_WritePixels_2=
+OS_WriteableBitmap_WritePixels_3=
+OS_WriteableBitmap_WritePixels_4=
+
+OS_gcnew_AccessText=
+
+OS_gcnew_Application=
+
+OS_gcnew_ArcSegment=
+OS_gcnew_ArcSegment_0=
+OS_gcnew_ArcSegment_1=
+OS_gcnew_ArcSegment_2=
+OS_gcnew_ArcSegment_3=
+OS_gcnew_ArcSegment_4=
+OS_gcnew_ArcSegment_5=
+
+OS_gcnew_BezierSegment=
+OS_gcnew_BezierSegment_0=
+OS_gcnew_BezierSegment_1=
+OS_gcnew_BezierSegment_2=
+OS_gcnew_BezierSegment_3=
+
+OS_gcnew_1Binding__=
+
+OS_gcnew_1Binding__I=
+OS_gcnew_1Binding__I_0=
+
+OS_gcnew_Bitmap=
+OS_gcnew_Bitmap_0=
+OS_gcnew_Bitmap_1=
+OS_gcnew_Bitmap_2=
+OS_gcnew_Bitmap_3=
+OS_gcnew_Bitmap_4=
+
+OS_gcnew_BitmapImage=
+
+OS_gcnew_BitmapPalette=
+OS_gcnew_BitmapPalette_0=
+
+OS_gcnew_Button=
+
+OS_gcnew_CancelEventHandler=
+OS_gcnew_CancelEventHandler_0=
+OS_gcnew_CancelEventHandler_1=
+
+OS_gcnew_Canvas=
+
+OS_gcnew_CharacterHit=
+OS_gcnew_CharacterHit_0=
+OS_gcnew_CharacterHit_1=
+
+OS_gcnew_CheckBox=
+
+OS_gcnew_ColorDialog=
+
+OS_gcnew_ColorList=
+OS_gcnew_ColorList_0=
+
+OS_gcnew_ColumnDefinition=
+
+OS_gcnew_CombinedGeometry=
+OS_gcnew_CombinedGeometry_0=
+OS_gcnew_CombinedGeometry_1=
+OS_gcnew_CombinedGeometry_2=
+
+OS_gcnew_ComboBox=
+
+OS_gcnew_ComboBoxItem=
+
+OS_gcnew_CompositeCollection=
+
+OS_gcnew_ContentControl=
+
+OS_gcnew_ContextMenu=
+
+OS_gcnew_ContextMenuEventHandler=
+OS_gcnew_ContextMenuEventHandler_0=
+OS_gcnew_ContextMenuEventHandler_1=
+
+OS_gcnew_ControlTemplate=
+
+OS_gcnew_CroppedBitmap=
+OS_gcnew_CroppedBitmap_0=
+OS_gcnew_CroppedBitmap_1=
+
+OS_gcnew_DashStyle=
+OS_gcnew_DashStyle_0=
+OS_gcnew_DashStyle_1=
+
+OS_gcnew_DataTemplate=
+
+OS_gcnew_DiscreteDoubleKeyFrame=
+OS_gcnew_DiscreteDoubleKeyFrame_0=
+OS_gcnew_DiscreteDoubleKeyFrame_1=
+
+OS_gcnew_DispatcherFrame=
+
+OS_gcnew_DispatcherHookEventHandler=
+OS_gcnew_DispatcherHookEventHandler_0=
+OS_gcnew_DispatcherHookEventHandler_1=
+
+OS_gcnew_DispatcherTimer=
+
+OS_gcnew_DoubleAnimationUsingKeyFrames=
+
+OS_gcnew_DoubleCollection=
+OS_gcnew_DoubleCollection_0=
+
+OS_gcnew_DrawingVisual=
+
+OS_gcnew_Duration=
+OS_gcnew_Duration_0=
+
+OS_gcnew_EventHandler=
+OS_gcnew_EventHandler_0=
+OS_gcnew_EventHandler_1=
+
+OS_gcnew_ExecutedRoutedEventHandler=
+OS_gcnew_ExecutedRoutedEventHandler_0=
+OS_gcnew_ExecutedRoutedEventHandler_1=
+
+OS_gcnew_Expander=
+
+OS_gcnew_FileInfo=
+OS_gcnew_FileInfo_0=
+
+OS_gcnew_FontFamily=
+OS_gcnew_FontFamily_0=
+
+OS_gcnew_FormatConvertedBitmap=
+OS_gcnew_FormatConvertedBitmap_0=
+OS_gcnew_FormatConvertedBitmap_1=
+OS_gcnew_FormatConvertedBitmap_2=
+OS_gcnew_FormatConvertedBitmap_3=
+
+OS_gcnew_FormattedText=
+OS_gcnew_FormattedText_0=
+OS_gcnew_FormattedText_1=
+OS_gcnew_FormattedText_2=
+OS_gcnew_FormattedText_3=
+OS_gcnew_FormattedText_4=
+OS_gcnew_FormattedText_5=
+
+OS_gcnew_1FrameworkElementFactory__I=
+OS_gcnew_1FrameworkElementFactory__I_0=
+
+OS_gcnew_1FrameworkElementFactory__II=
+OS_gcnew_1FrameworkElementFactory__II_0=
+OS_gcnew_1FrameworkElementFactory__II_1=
+
+OS_gcnew_GeometryGroup=
+
+OS_gcnew_Grid=
+
+OS_gcnew_GridLength=
+OS_gcnew_GridLength_0=
+OS_gcnew_GridLength_1=
+
+OS_gcnew_GridView=
+
+OS_gcnew_GridViewColumn=
+
+OS_gcnew_GridViewColumnCollection=
+
+OS_gcnew_GridViewColumnHeader=
+
+OS_gcnew_GroupBox=
+
+OS_gcnew_Hyperlink=
+OS_gcnew_Hyperlink_0=
+
+OS_gcnew_Image=
+
+OS_gcnew_ImageBrush=
+OS_gcnew_ImageBrush_0=
+
+OS_gcnew_Int32=
+OS_gcnew_Int32_0=
+
+OS_gcnew_Int32Rect=
+OS_gcnew_Int32Rect_0=
+OS_gcnew_Int32Rect_1=
+OS_gcnew_Int32Rect_2=
+OS_gcnew_Int32Rect_3=
+
+OS_gcnew_IntPtr=
+OS_gcnew_IntPtr_0=
+
+OS_gcnew_KeyEventHandler=
+OS_gcnew_KeyEventHandler_0=
+OS_gcnew_KeyEventHandler_1=
+
+OS_gcnew_KeyboardFocusChangedEventHandler=
+OS_gcnew_KeyboardFocusChangedEventHandler_0=
+OS_gcnew_KeyboardFocusChangedEventHandler_1=
+
+OS_gcnew_Label=
+
+OS_gcnew_LineSegment=
+OS_gcnew_LineSegment_0=
+OS_gcnew_LineSegment_1=
+
+OS_gcnew_1LinearGradientBrush__IID=
+OS_gcnew_1LinearGradientBrush__IID_0=
+OS_gcnew_1LinearGradientBrush__IID_1=
+OS_gcnew_1LinearGradientBrush__IID_2=
+
+OS_gcnew_1LinearGradientBrush__IIII=
+OS_gcnew_1LinearGradientBrush__IIII_0=
+OS_gcnew_1LinearGradientBrush__IIII_1=
+OS_gcnew_1LinearGradientBrush__IIII_2=
+OS_gcnew_1LinearGradientBrush__IIII_3=
+
+OS_gcnew_ListBox=
+
+OS_gcnew_ListBoxItem=
+
+OS_gcnew_ListView=
+
+OS_gcnew_ListViewItem=
+
+OS_gcnew_Matrix=
+OS_gcnew_Matrix_0=
+OS_gcnew_Matrix_1=
+OS_gcnew_Matrix_2=
+OS_gcnew_Matrix_3=
+OS_gcnew_Matrix_4=
+OS_gcnew_Matrix_5=
+
+OS_gcnew_MatrixTransform=
+OS_gcnew_MatrixTransform_0=
+
+OS_gcnew_Menu=
+
+OS_gcnew_MenuItem=
+
+OS_gcnew_MouseButtonEventHandler=
+OS_gcnew_MouseButtonEventHandler_0=
+OS_gcnew_MouseButtonEventHandler_1=
+
+OS_gcnew_MouseEventHandler=
+OS_gcnew_MouseEventHandler_0=
+OS_gcnew_MouseEventHandler_1=
+
+OS_gcnew_MouseWheelEventHandler=
+OS_gcnew_MouseWheelEventHandler_0=
+OS_gcnew_MouseWheelEventHandler_1=
+
+OS_gcnew_NoArgsDelegate=
+
+OS_gcnew_OpenFileDialog=
+
+OS_gcnew_PasswordBox=
+
+OS_gcnew_Path=
+
+OS_gcnew_PathFigure=
+
+OS_gcnew_PathGeometry=
+
+OS_gcnew_Pen=
+
+OS_gcnew_Point=
+OS_gcnew_Point_0=
+OS_gcnew_Point_1=
+
+OS_gcnew_PointCollection=
+OS_gcnew_PointCollection_0=
+
+OS_gcnew_PolyLineSegment=
+OS_gcnew_PolyLineSegment_0=
+OS_gcnew_PolyLineSegment_1=
+
+OS_gcnew_ProgressBar=
+
+OS_gcnew_QuadraticBezierSegment=
+OS_gcnew_QuadraticBezierSegment_0=
+OS_gcnew_QuadraticBezierSegment_1=
+OS_gcnew_QuadraticBezierSegment_2=
+
+OS_gcnew_RadioButton=
+
+OS_gcnew_Rect=
+OS_gcnew_Rect_0=
+OS_gcnew_Rect_1=
+OS_gcnew_Rect_2=
+OS_gcnew_Rect_3=
+
+OS_gcnew_Rectangle=
+
+OS_gcnew_RectangleGeometry=
+OS_gcnew_RectangleGeometry_0=
+
+OS_gcnew_RenderTargetBitmap=
+OS_gcnew_RenderTargetBitmap_0=
+OS_gcnew_RenderTargetBitmap_1=
+OS_gcnew_RenderTargetBitmap_2=
+OS_gcnew_RenderTargetBitmap_3=
+OS_gcnew_RenderTargetBitmap_4=
+
+OS_gcnew_RepeatButton=
+
+OS_gcnew_RoutedEventHandler=
+OS_gcnew_RoutedEventHandler_0=
+OS_gcnew_RoutedEventHandler_1=
+
+OS_gcnew_RoutedPropertyChangedEventHandler=
+OS_gcnew_RoutedPropertyChangedEventHandler_0=
+OS_gcnew_RoutedPropertyChangedEventHandler_1=
+
+OS_gcnew_RoutedPropertyChangedEventHandlerObject=
+OS_gcnew_RoutedPropertyChangedEventHandlerObject_0=
+OS_gcnew_RoutedPropertyChangedEventHandlerObject_1=
+
+OS_gcnew_RowDefinition=
+
+OS_gcnew_Run=
+
+OS_gcnew_SWTCanvas=
+OS_gcnew_SWTCanvas_0=
+
+OS_gcnew_SWTCellConverter=
+OS_gcnew_SWTCellConverter_0=
+OS_gcnew_SWTCellConverter_1=
+
+OS_gcnew_SWTSafeHandle=
+OS_gcnew_SWTSafeHandle_0=
+OS_gcnew_SWTSafeHandle_1=
+
+OS_gcnew_SWTTextEmbeddedObject=
+OS_gcnew_SWTTextEmbeddedObject_0=
+OS_gcnew_SWTTextEmbeddedObject_1=
+OS_gcnew_SWTTextEmbeddedObject_2=
+OS_gcnew_SWTTextEmbeddedObject_3=
+OS_gcnew_SWTTextEmbeddedObject_4=
+
+OS_gcnew_SWTTextParagraphProperties=
+OS_gcnew_SWTTextParagraphProperties_0=
+OS_gcnew_SWTTextParagraphProperties_1=
+OS_gcnew_SWTTextParagraphProperties_2=
+OS_gcnew_SWTTextParagraphProperties_3=
+OS_gcnew_SWTTextParagraphProperties_4=
+OS_gcnew_SWTTextParagraphProperties_5=
+OS_gcnew_SWTTextParagraphProperties_6=
+OS_gcnew_SWTTextParagraphProperties_7=
+
+OS_gcnew_SWTTextRunProperties=
+OS_gcnew_SWTTextRunProperties_0=
+OS_gcnew_SWTTextRunProperties_1=
+OS_gcnew_SWTTextRunProperties_2=
+OS_gcnew_SWTTextRunProperties_3=
+OS_gcnew_SWTTextRunProperties_4=
+OS_gcnew_SWTTextRunProperties_5=
+OS_gcnew_SWTTextRunProperties_6=
+OS_gcnew_SWTTextRunProperties_7=
+
+OS_gcnew_SWTTextSource=
+OS_gcnew_SWTTextSource_0=
+
+OS_gcnew_SWTTreeViewRowPresenter=
+OS_gcnew_SWTTreeViewRowPresenter_0=
+
+OS_gcnew_SaveFileDialog=
+
+OS_gcnew_ScaleTransform=
+OS_gcnew_ScaleTransform_0=
+OS_gcnew_ScaleTransform_1=
+
+OS_gcnew_ScrollBar=
+
+OS_gcnew_ScrollEventHandler=
+OS_gcnew_ScrollEventHandler_0=
+OS_gcnew_ScrollEventHandler_1=
+
+OS_gcnew_SelectionChangedEventHandler=
+OS_gcnew_SelectionChangedEventHandler_0=
+OS_gcnew_SelectionChangedEventHandler_1=
+
+OS_gcnew_Separator=
+
+OS_gcnew_Setter=
+OS_gcnew_Setter_0=
+OS_gcnew_Setter_1=
+
+OS_gcnew_1Size__=
+
+OS_gcnew_1Size__DD=
+OS_gcnew_1Size__DD_0=
+OS_gcnew_1Size__DD_1=
+
+OS_gcnew_SizeChangedEventHandler=
+OS_gcnew_SizeChangedEventHandler_0=
+OS_gcnew_SizeChangedEventHandler_1=
+
+OS_gcnew_Slider=
+
+OS_gcnew_SolidColorBrush=
+OS_gcnew_SolidColorBrush_0=
+
+OS_gcnew_StackPanel=
+
+OS_gcnew_StreamGeometry=
+
+OS_gcnew_String=
+OS_gcnew_String_0=
+
+OS_gcnew_Style=
+
+OS_gcnew_TabControl=
+
+OS_gcnew_TabItem=
+
+OS_gcnew_TextBlock=
+
+OS_gcnew_TextBox=
+
+OS_gcnew_TextChangedEventHandler=
+OS_gcnew_TextChangedEventHandler_0=
+OS_gcnew_TextChangedEventHandler_1=
+
+OS_gcnew_TextCharacters=
+OS_gcnew_TextCharacters_0=
+OS_gcnew_TextCharacters_1=
+OS_gcnew_TextCharacters_2=
+OS_gcnew_TextCharacters_3=
+
+OS_gcnew_TextCompositionEventHandler=
+OS_gcnew_TextCompositionEventHandler_0=
+OS_gcnew_TextCompositionEventHandler_1=
+
+OS_gcnew_TextDecorationCollection=
+OS_gcnew_TextDecorationCollection_0=
+
+OS_gcnew_TextEndOfLine=
+OS_gcnew_TextEndOfLine_0=
+OS_gcnew_TextEndOfLine_1=
+
+OS_gcnew_TextEndOfParagraph=
+OS_gcnew_TextEndOfParagraph_0=
+OS_gcnew_TextEndOfParagraph_1=
+
+OS_gcnew_TextTabProperties=
+OS_gcnew_TextTabProperties_0=
+OS_gcnew_TextTabProperties_1=
+OS_gcnew_TextTabProperties_2=
+OS_gcnew_TextTabProperties_3=
+
+OS_gcnew_TextTabPropertiesCollection=
+OS_gcnew_TextTabPropertiesCollection_0=
+
+OS_gcnew_Thickness=
+OS_gcnew_Thickness_0=
+OS_gcnew_Thickness_1=
+OS_gcnew_Thickness_2=
+OS_gcnew_Thickness_3=
+
+OS_gcnew_TimeSpan=
+OS_gcnew_TimeSpan_0=
+
+OS_gcnew_TimerHandler=
+OS_gcnew_TimerHandler_0=
+OS_gcnew_TimerHandler_1=
+
+OS_gcnew_ToggleButton=
+
+OS_gcnew_ToolBar=
+
+OS_gcnew_ToolBarTray=
+
+OS_gcnew_TransformGroup=
+
+OS_gcnew_TranslateTransform=
+OS_gcnew_TranslateTransform_0=
+OS_gcnew_TranslateTransform_1=
+
+OS_gcnew_TreeView=
+
+OS_gcnew_TreeViewItem=
+
+OS_gcnew_Typeface=
+OS_gcnew_Typeface_0=
+OS_gcnew_Typeface_1=
+OS_gcnew_Typeface_2=
+OS_gcnew_Typeface_3=
+
+OS_gcnew_Uri=
+OS_gcnew_Uri_0=
+OS_gcnew_Uri_1=
+
+OS_gcnew_Window=
+
+OS_gcnew_1WriteableBitmap__I=
+OS_gcnew_1WriteableBitmap__I_0=
+
+OS_gcnew_1WriteableBitmap__IIDDII=
+OS_gcnew_1WriteableBitmap__IIDDII_0=
+OS_gcnew_1WriteableBitmap__IIDDII_1=
+OS_gcnew_1WriteableBitmap__IIDDII_2=
+OS_gcnew_1WriteableBitmap__IIDDII_3=
+OS_gcnew_1WriteableBitmap__IIDDII_4=
+OS_gcnew_1WriteableBitmap__IIDDII_5=
+
+OS_gcnew_byte=
+OS_gcnew_byte_0=
+
+OS_memmove=
+OS_memmove_0=
+OS_memmove_1=
+OS_memmove_2=
+
+
+org_eclipse_swt_internal_wpf_POINT=
+POINT_x=
+POINT_y=
+
diff --git a/bundles/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/org.eclipse.swt.internal.wpf.OS.properties b/bundles/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/org.eclipse.swt.internal.wpf.OS.properties
new file mode 100644
index 0000000000..22b7d12a0d
--- /dev/null
+++ b/bundles/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/org.eclipse.swt.internal.wpf.OS.properties
@@ -0,0 +1,3343 @@
+###############################################################################
+# Copyright (c) 2000, 2006 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+org_eclipse_swt_internal_wpf_COM=flags=no_gen
+COM_OleInitialize=
+COM_OleInitialize_0=
+
+COM_OleUninitialize=
+
+
+org_eclipse_swt_internal_wpf_ICONINFO=flags=cpp
+ICONINFO_fIcon=
+ICONINFO_xHotspot=
+ICONINFO_yHotspot=
+ICONINFO_hbmMask=cast=HBITMAP
+ICONINFO_hbmColor=cast=HBITMAP
+
+org_eclipse_swt_internal_wpf_OS=flags=cpp
+OS_AccessText_AccessKey=flags=getter
+OS_AccessText_AccessKey_0=cast=AccessText^,flags=gcobject
+
+OS_AccessText_Text=flags=setter
+OS_AccessText_Text_0=cast=AccessText^,flags=gcobject
+OS_AccessText_Text_1=cast=String^,flags=gcobject
+
+OS_ApplicationCommands_Cut=accessor=ApplicationCommands::Cut,flags=const gcobject
+
+OS_ApplicationCommands_Paste=accessor=ApplicationCommands::Paste,flags=const gcobject
+
+OS_ApplicationCommands_Redo=accessor=ApplicationCommands::Redo,flags=const gcobject
+
+OS_ApplicationCommands_Undo=accessor=ApplicationCommands::Undo,flags=const gcobject
+
+OS_Application_Dispatcher=flags=gcobject getter
+OS_Application_Dispatcher_0=cast=Application ^,flags=gcobject
+
+OS_Application_Run=flags=cpp
+OS_Application_Run_0=cast=Application^,flags=gcobject
+
+OS_Application_Shutdown=flags=cpp
+OS_Application_Shutdown_0=cast=Application^,flags=gcobject
+
+OS_Application_ShutdownMode=flags=setter
+OS_Application_ShutdownMode_0=cast=Application^,flags=gcobject
+OS_Application_ShutdownMode_1=cast=ShutdownMode
+
+OS_Application_Windows=flags=gcobject getter
+OS_Application_Windows_0=cast=Application^,flags=gcobject
+
+OS_BindingExpression_UpdateTarget=flags=cpp
+OS_BindingExpression_UpdateTarget_0=cast=BindingExpression^,flags=gcobject
+
+OS_Binding_Converter=flags=setter
+OS_Binding_Converter_0=cast=Binding^,flags=gcobject
+OS_Binding_Converter_1=cast=IValueConverter^,flags=gcobject
+
+OS_Binding_ConverterParameter=flags=setter
+OS_Binding_ConverterParameter_0=cast=Binding^,flags=gcobject
+OS_Binding_ConverterParameter_1=
+
+OS_BitmapImage_BeginInit=flags=cpp
+OS_BitmapImage_BeginInit_0=cast=(BitmapImage^),flags=gcobject
+
+OS_BitmapImage_CreateOptions=flags=setter
+OS_BitmapImage_CreateOptions_0=cast=(BitmapImage^),flags=gcobject
+OS_BitmapImage_CreateOptions_1=cast=BitmapCreateOptions
+
+OS_BitmapImage_EndInit=flags=cpp
+OS_BitmapImage_EndInit_0=cast=(BitmapImage^),flags=gcobject
+
+OS_BitmapImage_UriSource=flags=setter
+OS_BitmapImage_UriSource_0=cast=(BitmapImage^),flags=gcobject
+OS_BitmapImage_UriSource_1=cast=(Uri^),flags=gcobject
+
+OS_BitmapPalette_Colors=flags=gcobject getter
+OS_BitmapPalette_Colors_0=cast=BitmapPalette^,flags=gcobject
+
+OS_BitmapSource_Clone=flags=cpp gcobject
+OS_BitmapSource_Clone_0=cast=BitmapSource^,flags=gcobject
+
+OS_BitmapSource_CopyPixels=flags=cpp
+OS_BitmapSource_CopyPixels_0=cast=BitmapSource^,flags=gcobject
+OS_BitmapSource_CopyPixels_1=cast=Int32Rect,flags=gcobject
+OS_BitmapSource_CopyPixels_2=cast=IntPtr
+OS_BitmapSource_CopyPixels_3=
+OS_BitmapSource_CopyPixels_4=
+
+OS_BitmapSource_Create=accessor=BitmapSource::Create,flags=gcobject
+OS_BitmapSource_Create_0=
+OS_BitmapSource_Create_1=
+OS_BitmapSource_Create_2=
+OS_BitmapSource_Create_3=
+OS_BitmapSource_Create_4=cast=PixelFormat,flags=gcobject
+OS_BitmapSource_Create_5=cast=BitmapPalette^,flags=gcobject
+OS_BitmapSource_Create_6=cast=IntPtr
+OS_BitmapSource_Create_7=
+OS_BitmapSource_Create_8=
+
+OS_BitmapSource_Format=flags=gcobject getter
+OS_BitmapSource_Format_0=cast=(BitmapSource^),flags=gcobject
+
+OS_BitmapSource_Palette=flags=gcobject getter
+OS_BitmapSource_Palette_0=cast=(BitmapSource^),flags=gcobject
+
+OS_BitmapSource_PixelHeight=flags=getter
+OS_BitmapSource_PixelHeight_0=cast=BitmapSource^,flags=gcobject
+
+OS_BitmapSource_PixelWidth=flags=getter
+OS_BitmapSource_PixelWidth_0=cast=BitmapSource^,flags=gcobject
+
+OS_Bitmap_GetHicon=flags=no_gen cpp
+OS_Bitmap_GetHicon_0=cast=(System::Drawing::Bitmap^),flags=gcobject
+
+OS_Border_typeid=accessor=Border::typeid,flags=const gcobject
+
+OS_Brush_Opacity=flags=setter
+OS_Brush_Opacity_0=cast=Brush^,flags=gcobject
+OS_Brush_Opacity_1=
+
+OS_Brushes_Black=accessor=Brushes::Black,flags=const gcobject
+
+OS_Brushes_LightSkyBlue=accessor=Brushes::LightSkyBlue,flags=const gcobject
+
+OS_Brushes_Navy=accessor=Brushes::Navy,flags=const gcobject
+
+OS_Brushes_Transparent=accessor=Brushes::Transparent,flags=const gcobject
+
+OS_Brushes_White=accessor=Brushes::White,flags=const gcobject
+
+OS_ButtonBase_Click=flags=adder
+OS_ButtonBase_Click_0=cast=ButtonBase^,flags=gcobject
+OS_ButtonBase_Click_1=cast=(RoutedEventHandler^),flags=gcobject
+
+OS_Button_1IsDefault__I=flags=getter
+OS_Button_1IsDefault__I_0=cast=(Button^),flags=gcobject
+
+OS_Button_1IsDefault__IZ=flags=setter
+OS_Button_1IsDefault__IZ_0=cast=(Button^),flags=gcobject
+OS_Button_1IsDefault__IZ_1=
+
+OS_CancelEventArgs_Cancel=flags=setter
+OS_CancelEventArgs_Cancel_0=cast=CancelEventArgs^,flags=gcobject
+OS_CancelEventArgs_Cancel_1=
+
+OS_Canvas_GetLeft=accessor=Canvas::GetLeft
+OS_Canvas_GetLeft_0=cast=(UIElement^),flags=gcobject
+
+OS_Canvas_GetTop=accessor=Canvas::GetTop
+OS_Canvas_GetTop_0=cast=(UIElement^),flags=gcobject
+
+OS_Canvas_SetLeft=accessor=Canvas::SetLeft
+OS_Canvas_SetLeft_0=cast=(UIElement^),flags=gcobject
+OS_Canvas_SetLeft_1=
+
+OS_Canvas_SetTop=accessor=Canvas::SetTop
+OS_Canvas_SetTop_0=cast=(UIElement^),flags=gcobject
+OS_Canvas_SetTop_1=
+
+OS_CharacterHit_FirstCharacterIndex=flags=getter
+OS_CharacterHit_FirstCharacterIndex_0=cast=(CharacterHit^),flags=gcobject
+
+OS_CharacterHit_TrailingLength=flags=getter
+OS_CharacterHit_TrailingLength_0=cast=(CharacterHit^),flags=gcobject
+
+OS_CheckBox_typeid=accessor=CheckBox::typeid,flags=const gcobject
+
+OS_Clipboard_GetText=accessor=Clipboard::GetText,flags=gcobject
+
+OS_ColorDialog_AnyColor=flags=setter
+OS_ColorDialog_AnyColor_0=cast=System::Windows::Forms::ColorDialog^,flags=gcobject
+OS_ColorDialog_AnyColor_1=
+
+OS_ColorDialog_1Color__I=flags=gcobject getter
+OS_ColorDialog_1Color__I_0=cast=(System::Windows::Forms::ColorDialog^),flags=gcobject
+
+OS_ColorDialog_1Color__II=flags=setter
+OS_ColorDialog_1Color__II_0=cast=(System::Windows::Forms::ColorDialog^),flags=gcobject
+OS_ColorDialog_1Color__II_1=cast=(System::Drawing::Color),flags=gcobject
+
+OS_ColorDialog_1CustomColors__I=flags=gcobject getter
+OS_ColorDialog_1CustomColors__I_0=cast=(System::Windows::Forms::ColorDialog^),flags=gcobject
+
+OS_ColorDialog_1CustomColors__II=flags=setter
+OS_ColorDialog_1CustomColors__II_0=cast=(System::Windows::Forms::ColorDialog^),flags=gcobject
+OS_ColorDialog_1CustomColors__II_1=cast=array<int>^,flags=gcobject
+
+OS_ColorList_Add=flags=cpp
+OS_ColorList_Add_0=cast=(System::Collections::Generic::List<Color>^),flags=gcobject
+OS_ColorList_Add_1=cast=Color,flags=gcobject
+
+OS_ColorList_Count=flags=getter
+OS_ColorList_Count_0=cast=(System::Collections::Generic::IList<Color>^),flags=gcobject
+
+OS_ColorList_Current=flags=getter gcobject
+OS_ColorList_Current_0=cast=(System::Collections::Generic::IEnumerator<Color>^),flags=gcobject
+
+OS_ColorList_GetEnumerator=flags=gcobject cpp
+OS_ColorList_GetEnumerator_0=cast=(System::Collections::Generic::IEnumerable<Color>^),flags=gcobject
+
+OS_Color_A=flags=getter
+OS_Color_A_0=cast=Color^,flags=gcobject
+
+OS_Color_B=flags=getter
+OS_Color_B_0=cast=(Color^),flags=gcobject
+
+OS_Color_FromArgb=accessor=Color::FromArgb,flags=struct gcobject
+OS_Color_FromArgb_0=
+OS_Color_FromArgb_1=
+OS_Color_FromArgb_2=
+OS_Color_FromArgb_3=
+
+OS_Color_G=flags=getter
+OS_Color_G_0=cast=Color^,flags=gcobject
+
+OS_Color_R=flags=getter
+OS_Color_R_0=cast=Color^,flags=gcobject
+
+OS_Colors_Black=accessor=Colors::Black,flags=const struct gcobject
+
+OS_Colors_Blue=accessor=Colors::Blue,flags=const struct gcobject
+
+OS_Colors_Cyan=accessor=Colors::Cyan,flags=const struct gcobject
+
+OS_Colors_DarkGray=accessor=Colors::DarkGray,flags=const struct gcobject
+
+OS_Colors_Green=accessor=Colors::Green,flags=const struct gcobject
+
+OS_Colors_LightSkyBlue=accessor=Colors::LightSkyBlue,flags=const struct gcobject
+
+OS_Colors_Lime=accessor=Colors::Lime,flags=const struct gcobject
+
+OS_Colors_Magenta=accessor=Colors::Magenta,flags=const struct gcobject
+
+OS_Colors_Maroon=accessor=Colors::Maroon,flags=const struct gcobject
+
+OS_Colors_Navy=accessor=Colors::Navy,flags=const struct gcobject
+
+OS_Colors_Olive=accessor=Colors::Olive,flags=const struct gcobject
+
+OS_Colors_Purple=accessor=Colors::Purple,flags=const struct gcobject
+
+OS_Colors_Red=accessor=Colors::Red,flags=const struct gcobject
+
+OS_Colors_Silver=accessor=Colors::Silver,flags=const struct gcobject
+
+OS_Colors_Teal=accessor=Colors::Teal,flags=const struct gcobject
+
+OS_Colors_Transparent=accessor=Colors::Transparent,flags=const struct gcobject
+
+OS_Colors_White=accessor=Colors::White,flags=const struct gcobject
+
+OS_Colors_Yellow=accessor=Colors::Yellow,flags=const struct gcobject
+
+OS_ColumnDefinitionCollection_Add=flags=cpp
+OS_ColumnDefinitionCollection_Add_0=cast=(ColumnDefinitionCollection^),flags=gcobject
+OS_ColumnDefinitionCollection_Add_1=cast=(ColumnDefinition^),flags=gcobject
+
+OS_ColumnDefinition_Width=flags=setter
+OS_ColumnDefinition_Width_0=cast=(ColumnDefinition^),flags=gcobject
+OS_ColumnDefinition_Width_1=cast=(GridLength),flags=gcobject
+
+OS_ComboBox_1IsDropDownOpen__I=flags=getter
+OS_ComboBox_1IsDropDownOpen__I_0=cast=(ComboBox^),flags=gcobject
+
+OS_ComboBox_1IsDropDownOpen__IZ=flags=setter
+OS_ComboBox_1IsDropDownOpen__IZ_0=cast=(ComboBox^),flags=gcobject
+OS_ComboBox_1IsDropDownOpen__IZ_1=
+
+OS_ComboBox_IsEditable=flags=setter
+OS_ComboBox_IsEditable_0=cast=(ComboBox^),flags=gcobject
+OS_ComboBox_IsEditable_1=
+
+OS_ComboBox_SelectionBoxItem=flags=gcobject getter
+OS_ComboBox_SelectionBoxItem_0=cast=ComboBox^,flags=gcobject
+
+OS_CommandManager_AddPreviewExecutedHandler=accessor=CommandManager::AddPreviewExecutedHandler,flags=struct
+OS_CommandManager_AddPreviewExecutedHandler_0=cast=UIElement^,flags=gcobject
+OS_CommandManager_AddPreviewExecutedHandler_1=cast=ExecutedRoutedEventHandler^,flags=gcobject
+
+OS_CommonDialog_ShowDialog=flags=cpp
+OS_CommonDialog_ShowDialog_0=cast=CommonDialog^,flags=gcobject
+OS_CommonDialog_ShowDialog_1=cast=Window^,flags=gcobject
+
+OS_CompositeCollection_IndexOf=flags=cpp
+OS_CompositeCollection_IndexOf_0=cast=CompositeCollection^,flags=gcobject
+OS_CompositeCollection_IndexOf_1=cast=Object^,flags=gcobject
+
+OS_CompositeCollection_Insert=flags=cpp
+OS_CompositeCollection_Insert_0=cast=CompositeCollection^,flags=gcobject
+OS_CompositeCollection_Insert_1=
+OS_CompositeCollection_Insert_2=cast=Object^,flags=gcobject
+
+OS_CompositeCollection_Remove=flags=cpp
+OS_CompositeCollection_Remove_0=cast=CompositeCollection^,flags=gcobject
+OS_CompositeCollection_Remove_1=cast=Object^,flags=gcobject
+
+OS_Console_Beep=accessor=Console::Beep
+
+OS_ContainerVisual_1Clip__I=flags=gcobject getter
+OS_ContainerVisual_1Clip__I_0=cast=ContainerVisual^,flags=gcobject
+
+OS_ContainerVisual_1Clip__II=flags=setter
+OS_ContainerVisual_1Clip__II_0=cast=ContainerVisual^,flags=gcobject
+OS_ContainerVisual_1Clip__II_1=cast=Geometry^,flags=gcobject
+
+OS_ContentControl_1Content__I=flags=gcobject getter
+OS_ContentControl_1Content__I_0=cast=ContentControl^,flags=gcobject
+
+OS_ContentControl_1Content__II=flags=setter
+OS_ContentControl_1Content__II_0=cast=(ContentControl^),flags=gcobject
+OS_ContentControl_1Content__II_1=cast=Object^,flags=gcobject
+
+OS_ContentPresenter_Content=flags=gcobject getter
+OS_ContentPresenter_Content_0=cast=(ContentPresenter^),flags=gcobject
+
+OS_ContentPresenter_typeid=accessor=ContentPresenter::typeid,flags=const gcobject
+
+OS_ContextMenuEventArgs_CursorLeft=flags=getter
+OS_ContextMenuEventArgs_CursorLeft_0=cast=(ContextMenuEventArgs^),flags=gcobject
+
+OS_ContextMenuEventArgs_CursorTop=flags=getter
+OS_ContextMenuEventArgs_CursorTop_0=cast=(ContextMenuEventArgs^),flags=gcobject
+
+OS_ContextMenu_Closed=flags=adder
+OS_ContextMenu_Closed_0=cast=(ContextMenu^),flags=gcobject
+OS_ContextMenu_Closed_1=cast=RoutedEventHandler^,flags=gcobject
+
+OS_ContextMenu_HorizontalOffset=flags=setter
+OS_ContextMenu_HorizontalOffset_0=cast=(ContextMenu^),flags=gcobject
+OS_ContextMenu_HorizontalOffset_1=
+
+OS_ContextMenu_IsOpen=flags=setter
+OS_ContextMenu_IsOpen_0=cast=ContextMenu^,flags=gcobject
+OS_ContextMenu_IsOpen_1=
+
+OS_ContextMenu_Opened=flags=adder
+OS_ContextMenu_Opened_0=cast=(ContextMenu^),flags=gcobject
+OS_ContextMenu_Opened_1=cast=RoutedEventHandler^,flags=gcobject
+
+OS_ContextMenu_Placement=flags=setter
+OS_ContextMenu_Placement_0=cast=(ContextMenu^),flags=gcobject
+OS_ContextMenu_Placement_1=cast=PlacementMode
+
+OS_ContextMenu_VerticalOffset=flags=setter
+OS_ContextMenu_VerticalOffset_0=cast=(ContextMenu^),flags=gcobject
+OS_ContextMenu_VerticalOffset_1=
+
+OS_Control_Background=flags=setter
+OS_Control_Background_0=cast=Control^,flags=gcobject
+OS_Control_Background_1=cast=Brush^,flags=gcobject
+
+OS_Control_BackgroundProperty=accessor=Control::BackgroundProperty,flags=const gcobject
+
+OS_Control_FontFamily=flags=setter
+OS_Control_FontFamily_0=cast=(Control^),flags=gcobject
+OS_Control_FontFamily_1=cast=FontFamily^,flags=gcobject
+
+OS_Control_FontFamilyProperty=accessor=Control::FontFamilyProperty,flags=const gcobject
+
+OS_Control_FontSize=flags=setter
+OS_Control_FontSize_0=cast=(Control^),flags=gcobject
+OS_Control_FontSize_1=
+
+OS_Control_FontSizeProperty=accessor=Control::FontSizeProperty,flags=const gcobject
+
+OS_Control_FontStretch=flags=setter
+OS_Control_FontStretch_0=cast=(Control^),flags=gcobject
+OS_Control_FontStretch_1=cast=FontStretch,flags=gcobject
+
+OS_Control_FontStretchProperty=accessor=Control::FontStretchProperty,flags=const gcobject
+
+OS_Control_FontStyle=flags=setter
+OS_Control_FontStyle_0=cast=(Control^),flags=gcobject
+OS_Control_FontStyle_1=cast=FontStyle,flags=gcobject
+
+OS_Control_FontStyleProperty=accessor=Control::FontStyleProperty,flags=const gcobject
+
+OS_Control_FontWeight=flags=setter
+OS_Control_FontWeight_0=cast=(Control^),flags=gcobject
+OS_Control_FontWeight_1=cast=FontWeight,flags=gcobject
+
+OS_Control_FontWeightProperty=accessor=Control::FontWeightProperty,flags=const gcobject
+
+OS_Control_Foreground=flags=setter
+OS_Control_Foreground_0=cast=Control^,flags=gcobject
+OS_Control_Foreground_1=cast=(Brush^),flags=gcobject
+
+OS_Control_ForegroundProperty=accessor=Control::ForegroundProperty,flags=const gcobject
+
+OS_Control_1HorizontalContentAlignment__I=flags=getter
+OS_Control_1HorizontalContentAlignment__I_0=cast=(Control ^),flags=gcobject
+
+OS_Control_1HorizontalContentAlignment__II=flags=setter
+OS_Control_1HorizontalContentAlignment__II_0=cast=(Control ^),flags=gcobject
+OS_Control_1HorizontalContentAlignment__II_1=cast=(HorizontalAlignment)
+
+OS_Control_MouseDoubleClick=flags=adder
+OS_Control_MouseDoubleClick_0=cast=Control^,flags=gcobject
+OS_Control_MouseDoubleClick_1=cast=MouseButtonEventHandler^,flags=gcobject
+
+OS_Control_1Template__I=flags=gcobject getter
+OS_Control_1Template__I_0=cast=Control^,flags=gcobject
+
+OS_Control_1Template__II=flags=setter
+OS_Control_1Template__II_0=cast=Control^,flags=gcobject
+OS_Control_1Template__II_1=cast=ControlTemplate^,flags=gcobject
+
+OS_CreateCursor=
+OS_CreateCursor_0=cast=(HINSTANCE)
+OS_CreateCursor_1=
+OS_CreateCursor_2=
+OS_CreateCursor_3=
+OS_CreateCursor_4=
+OS_CreateCursor_5=cast=(CONST VOID *),flags=no_out critical
+OS_CreateCursor_6=cast=(CONST VOID *),flags=no_out critical
+
+OS_CreateIconIndirect=
+OS_CreateIconIndirect_0=
+
+OS_CultureInfo_CurrentUICulture=accessor=CultureInfo::CurrentUICulture,flags=gcobject const
+
+OS_CursorInteropHelper_Create=accessor=System::Windows::Interop::CursorInteropHelper::Create,flags=gcobject
+OS_CursorInteropHelper_Create_0=cast=SafeHandle^,flags=gcobject
+
+OS_Cursors_AppStarting=accessor=Cursors::AppStarting,flags=const gcobject
+
+OS_Cursors_Arrow=accessor=Cursors::Arrow,flags=const gcobject
+
+OS_Cursors_Cross=accessor=Cursors::Cross,flags=const gcobject
+
+OS_Cursors_Hand=accessor=Cursors::Hand,flags=const gcobject
+
+OS_Cursors_Help=accessor=Cursors::Help,flags=const gcobject
+
+OS_Cursors_IBeam=accessor=Cursors::IBeam,flags=const gcobject
+
+OS_Cursors_No=accessor=Cursors::No,flags=const gcobject
+
+OS_Cursors_ScrollE=accessor=Cursors::ScrollE,flags=const gcobject
+
+OS_Cursors_ScrollN=accessor=Cursors::ScrollN,flags=const gcobject
+
+OS_Cursors_ScrollNE=accessor=Cursors::ScrollNE,flags=const gcobject
+
+OS_Cursors_ScrollNW=accessor=Cursors::ScrollNW,flags=const gcobject
+
+OS_Cursors_ScrollS=accessor=Cursors::ScrollS,flags=const gcobject
+
+OS_Cursors_ScrollSE=accessor=Cursors::ScrollSE,flags=const gcobject
+
+OS_Cursors_ScrollSW=accessor=Cursors::ScrollSW,flags=const gcobject
+
+OS_Cursors_ScrollW=accessor=Cursors::ScrollW,flags=const gcobject
+
+OS_Cursors_SizeAll=accessor=Cursors::SizeAll,flags=const gcobject
+
+OS_Cursors_SizeNESW=accessor=Cursors::SizeNESW,flags=const gcobject
+
+OS_Cursors_SizeNS=accessor=Cursors::SizeNS,flags=const gcobject
+
+OS_Cursors_SizeNWSE=accessor=Cursors::SizeNWSE,flags=const gcobject
+
+OS_Cursors_SizeWE=accessor=Cursors::SizeWE,flags=const gcobject
+
+OS_Cursors_UpArrow=accessor=Cursors::UpArrow,flags=const gcobject
+
+OS_Cursors_Wait=accessor=Cursors::Wait,flags=const gcobject
+
+OS_DashStyles_Dash=accessor=DashStyles::Dash,flags=const gcobject
+
+OS_DashStyles_DashDot=accessor=DashStyles::DashDot,flags=const gcobject
+
+OS_DashStyles_DashDotDot=accessor=DashStyles::DashDotDot,flags=const gcobject
+
+OS_DashStyles_Dot=accessor=DashStyles::Dot,flags=const gcobject
+
+OS_DashStyles_Solid=accessor=DashStyles::Solid,flags=const gcobject
+
+OS_DeleteGlobalRef=flags=jni
+OS_DeleteGlobalRef_0=cast=jobject
+
+OS_DeleteObject=
+OS_DeleteObject_0=cast=(HGDIOBJ)
+
+OS_DependencyObject_ClearValue=flags=cpp
+OS_DependencyObject_ClearValue_0=cast=(DependencyObject^),flags=gcobject
+OS_DependencyObject_ClearValue_1=cast=(DependencyProperty^),flags=gcobject
+
+OS_DependencyObject_SetValue=flags=cpp
+OS_DependencyObject_SetValue_0=cast=(DependencyObject^),flags=gcobject
+OS_DependencyObject_SetValue_1=cast=(DependencyProperty^),flags=gcobject
+OS_DependencyObject_SetValue_2=cast=Object^,flags=gcobject
+
+OS_DestroyIcon=
+OS_DestroyIcon_0=cast=HICON
+
+OS_DispatcherFrame_Continue=flags=setter
+OS_DispatcherFrame_Continue_0=cast=DispatcherFrame^,flags=gcobject
+OS_DispatcherFrame_Continue_1=
+
+OS_DispatcherHookEventArgs_Operation=flags=gcobject getter
+OS_DispatcherHookEventArgs_Operation_0=cast=DispatcherHookEventArgs ^,flags=gcobject
+
+OS_DispatcherHooks_DispatcherInactive=flags=adder
+OS_DispatcherHooks_DispatcherInactive_0=cast=(DispatcherHooks ^),flags=gcobject
+OS_DispatcherHooks_DispatcherInactive_1=cast=EventHandler ^,flags=gcobject
+
+OS_DispatcherHooks_OperationAborted=flags=adder
+OS_DispatcherHooks_OperationAborted_0=cast=(DispatcherHooks ^),flags=gcobject
+OS_DispatcherHooks_OperationAborted_1=cast=(DispatcherHookEventHandler ^),flags=gcobject
+
+OS_DispatcherHooks_OperationCompleted=flags=adder
+OS_DispatcherHooks_OperationCompleted_0=cast=(DispatcherHooks ^),flags=gcobject
+OS_DispatcherHooks_OperationCompleted_1=cast=(DispatcherHookEventHandler ^),flags=gcobject
+
+OS_DispatcherHooks_OperationPosted=flags=adder
+OS_DispatcherHooks_OperationPosted_0=cast=(DispatcherHooks ^),flags=gcobject
+OS_DispatcherHooks_OperationPosted_1=cast=DispatcherHookEventHandler ^,flags=gcobject
+
+OS_DispatcherOperation_Priority=flags=getter
+OS_DispatcherOperation_Priority_0=cast=DispatcherOperation ^,flags=gcobject
+
+OS_DispatcherTimer_Interval=flags=setter
+OS_DispatcherTimer_Interval_0=cast=DispatcherTimer^,flags=gcobject
+OS_DispatcherTimer_Interval_1=cast=(TimeSpan),flags=gcobject
+
+OS_DispatcherTimer_Start=flags=cpp
+OS_DispatcherTimer_Start_0=cast=DispatcherTimer^,flags=gcobject
+
+OS_DispatcherTimer_Stop=flags=cpp
+OS_DispatcherTimer_Stop_0=cast=DispatcherTimer^,flags=gcobject
+
+OS_DispatcherTimer_1Tag__I=flags=getter
+OS_DispatcherTimer_1Tag__I_0=cast=DispatcherTimer^,flags=gcobject
+
+OS_DispatcherTimer_1Tag__II=flags=setter
+OS_DispatcherTimer_1Tag__II_0=cast=DispatcherTimer^,flags=gcobject
+OS_DispatcherTimer_1Tag__II_1=
+
+OS_DispatcherTimer_Tick=flags=adder
+OS_DispatcherTimer_Tick_0=cast=DispatcherTimer^,flags=gcobject
+OS_DispatcherTimer_Tick_1=cast=EventHandler^,flags=gcobject
+
+OS_Dispatcher_BeginInvoke=flags=cpp gcobject
+OS_Dispatcher_BeginInvoke_0=cast=(Dispatcher ^),flags=gcobject
+OS_Dispatcher_BeginInvoke_1=cast=DispatcherPriority
+OS_Dispatcher_BeginInvoke_2=cast=Delegate ^,flags=gcobject
+
+OS_Dispatcher_Hooks=flags=gcobject getter
+OS_Dispatcher_Hooks_0=cast=Dispatcher ^,flags=gcobject
+
+OS_Dispatcher_PushFrame=accessor=Dispatcher::PushFrame
+OS_Dispatcher_PushFrame_0=cast=DispatcherFrame ^,flags=gcobject
+
+OS_DockPanel_DockProperty=accessor=DockPanel::DockProperty,flags=const gcobject
+
+OS_DockPanel_typeid=accessor=DockPanel::typeid,flags=const gcobject
+
+OS_DoubleAnimationUsingKeyFrames_KeyFrames=flags=gcobject getter
+OS_DoubleAnimationUsingKeyFrames_KeyFrames_0=cast=DoubleAnimationUsingKeyFrames^,flags=gcobject
+
+OS_DoubleCollection_Add=flags=cpp
+OS_DoubleCollection_Add_0=cast=DoubleCollection^,flags=gcobject
+OS_DoubleCollection_Add_1=
+
+OS_DoubleKeyFrameCollection_Add=flags=cpp
+OS_DoubleKeyFrameCollection_Add_0=cast=DoubleKeyFrameCollection^,flags=gcobject
+OS_DoubleKeyFrameCollection_Add_1=cast=(DoubleKeyFrame^),flags=gcobject
+
+OS_DrawingColor_FromArgb=accessor=System::Drawing::Color::FromArgb,flags=gcobject
+OS_DrawingColor_FromArgb_0=
+OS_DrawingColor_FromArgb_1=
+OS_DrawingColor_FromArgb_2=
+OS_DrawingColor_FromArgb_3=
+
+OS_DrawingColor_ToArgb=flags=cpp
+OS_DrawingColor_ToArgb_0=cast=System::Drawing::Color^,flags=gcobject
+
+OS_DrawingContext_Close=flags=cpp
+OS_DrawingContext_Close_0=cast=DrawingContext^,flags=gcobject
+
+OS_DrawingContext_DrawEllipse=flags=cpp
+OS_DrawingContext_DrawEllipse_0=cast=(DrawingContext^),flags=gcobject
+OS_DrawingContext_DrawEllipse_1=cast=(Brush^),flags=gcobject
+OS_DrawingContext_DrawEllipse_2=cast=Pen^,flags=gcobject
+OS_DrawingContext_DrawEllipse_3=cast=(Point),flags=gcobject
+OS_DrawingContext_DrawEllipse_4=
+OS_DrawingContext_DrawEllipse_5=
+
+OS_DrawingContext_DrawGeometry=flags=cpp
+OS_DrawingContext_DrawGeometry_0=cast=(DrawingContext^),flags=gcobject
+OS_DrawingContext_DrawGeometry_1=cast=Brush^,flags=gcobject
+OS_DrawingContext_DrawGeometry_2=cast=Pen^,flags=gcobject
+OS_DrawingContext_DrawGeometry_3=cast=Geometry^,flags=gcobject
+
+OS_DrawingContext_DrawImage=flags=cpp
+OS_DrawingContext_DrawImage_0=cast=(DrawingContext^),flags=gcobject
+OS_DrawingContext_DrawImage_1=cast=ImageSource^,flags=gcobject
+OS_DrawingContext_DrawImage_2=cast=Rect,flags=gcobject
+
+OS_DrawingContext_DrawLine=flags=cpp
+OS_DrawingContext_DrawLine_0=cast=(DrawingContext^),flags=gcobject
+OS_DrawingContext_DrawLine_1=cast=Pen^,flags=gcobject
+OS_DrawingContext_DrawLine_2=cast=Point,flags=gcobject
+OS_DrawingContext_DrawLine_3=cast=Point,flags=gcobject
+
+OS_DrawingContext_DrawRectangle=flags=cpp
+OS_DrawingContext_DrawRectangle_0=cast=DrawingContext^,flags=gcobject
+OS_DrawingContext_DrawRectangle_1=cast=Brush^,flags=gcobject
+OS_DrawingContext_DrawRectangle_2=cast=Pen^,flags=gcobject
+OS_DrawingContext_DrawRectangle_3=cast=(Rect),flags=gcobject
+
+OS_DrawingContext_DrawRoundedRectangle=flags=cpp
+OS_DrawingContext_DrawRoundedRectangle_0=cast=(DrawingContext^),flags=gcobject
+OS_DrawingContext_DrawRoundedRectangle_1=cast=Brush^,flags=gcobject
+OS_DrawingContext_DrawRoundedRectangle_2=cast=Pen^,flags=gcobject
+OS_DrawingContext_DrawRoundedRectangle_3=cast=Rect,flags=gcobject
+OS_DrawingContext_DrawRoundedRectangle_4=
+OS_DrawingContext_DrawRoundedRectangle_5=
+
+OS_DrawingContext_DrawText=flags=cpp
+OS_DrawingContext_DrawText_0=cast=(DrawingContext^),flags=gcobject
+OS_DrawingContext_DrawText_1=cast=FormattedText^,flags=gcobject
+OS_DrawingContext_DrawText_2=cast=Point,flags=gcobject
+
+OS_DrawingContext_Pop=flags=cpp
+OS_DrawingContext_Pop_0=cast=(DrawingContext^),flags=gcobject
+
+OS_DrawingContext_PushClip=flags=cpp
+OS_DrawingContext_PushClip_0=cast=(DrawingContext^),flags=gcobject
+OS_DrawingContext_PushClip_1=cast=Geometry^,flags=gcobject
+
+OS_DrawingContext_PushOpacity=flags=cpp
+OS_DrawingContext_PushOpacity_0=cast=(DrawingContext^),flags=gcobject
+OS_DrawingContext_PushOpacity_1=
+
+OS_DrawingContext_PushTransform=flags=cpp
+OS_DrawingContext_PushTransform_0=cast=(DrawingContext^),flags=gcobject
+OS_DrawingContext_PushTransform_1=cast=Transform^,flags=gcobject
+
+OS_DrawingVisual_RenderOpen=flags=cpp gcobject
+OS_DrawingVisual_RenderOpen_0=cast=DrawingVisual^,flags=gcobject
+
+OS_DrawingVisual_typeid=accessor=DrawingVisual::typeid,flags=const gcobject
+
+OS_EditingCommands_Backspace=accessor=EditingCommands::Backspace,flags=const gcobject
+
+OS_EditingCommands_Delete=accessor=EditingCommands::Delete,flags=const gcobject
+
+OS_EditingCommands_DeleteNextWord=accessor=EditingCommands::DeleteNextWord,flags=const gcobject
+
+OS_EditingCommands_DeletePreviousWord=accessor=EditingCommands::DeletePreviousWord,flags=const gcobject
+
+OS_Environment_ExpandEnvironmentVariables=accessor=Environment::ExpandEnvironmentVariables,flags=gcobject
+OS_Environment_ExpandEnvironmentVariables_0=cast=String^,flags=gcobject
+
+OS_ExecutedRoutedEventArgs_Command=flags=gcobject getter
+OS_ExecutedRoutedEventArgs_Command_0=cast=ExecutedRoutedEventArgs^,flags=gcobject
+
+OS_ExecutedRoutedEventArgs_Handled=flags=setter
+OS_ExecutedRoutedEventArgs_Handled_0=cast=(ExecutedRoutedEventArgs^),flags=gcobject
+OS_ExecutedRoutedEventArgs_Handled_1=
+
+OS_Expander_Collapsed=flags=adder
+OS_Expander_Collapsed_0=cast=Expander^,flags=gcobject
+OS_Expander_Collapsed_1=cast=RoutedEventHandler^,flags=gcobject
+
+OS_Expander_Expanded=flags=adder
+OS_Expander_Expanded_0=cast=Expander^,flags=gcobject
+OS_Expander_Expanded_1=cast=RoutedEventHandler^,flags=gcobject
+
+OS_Expander_1IsExpanded__I=flags=getter
+OS_Expander_1IsExpanded__I_0=cast=(Expander^),flags=gcobject
+
+OS_Expander_1IsExpanded__IZ=flags=setter
+OS_Expander_1IsExpanded__IZ_0=cast=Expander^,flags=gcobject
+OS_Expander_1IsExpanded__IZ_1=
+
+OS_FileDialog_FileName=flags=setter
+OS_FileDialog_FileName_0=cast=FileDialog^,flags=gcobject
+OS_FileDialog_FileName_1=cast=String^,flags=gcobject
+
+OS_FileDialog_FileNames=flags=gcobject getter
+OS_FileDialog_FileNames_0=cast=FileDialog^,flags=gcobject
+
+OS_FileDialog_Filter=flags=setter
+OS_FileDialog_Filter_0=cast=FileDialog^,flags=gcobject
+OS_FileDialog_Filter_1=cast=String^,flags=gcobject
+
+OS_FileDialog_InitialDirectory=flags=setter
+OS_FileDialog_InitialDirectory_0=cast=FileDialog^,flags=gcobject
+OS_FileDialog_InitialDirectory_1=cast=String^,flags=gcobject
+
+OS_FileDialog_Title=flags=setter
+OS_FileDialog_Title_0=cast=FileDialog^,flags=gcobject
+OS_FileDialog_Title_1=cast=String^,flags=gcobject
+
+OS_FileInfo_DirectoryName=flags=gcobject getter
+OS_FileInfo_DirectoryName_0=cast=(System::IO::FileInfo^),flags=gcobject
+
+OS_FileInfo_Name=flags=gcobject getter
+OS_FileInfo_Name_0=cast=(System::IO::FileInfo^),flags=gcobject
+
+OS_FontFamily_GetTypefaces=flags=cpp gcobject
+OS_FontFamily_GetTypefaces_0=cast=FontFamily^,flags=gcobject
+
+OS_FontFamily_Source=flags=gcobject getter
+OS_FontFamily_Source_0=cast=FontFamily^,flags=gcobject
+
+OS_FontStretch_FromOpenTypeStretch=accessor=FontStretch::FromOpenTypeStretch,flags=gcobject
+OS_FontStretch_FromOpenTypeStretch_0=
+
+OS_FontStretch_ToOpenTypeStretch=flags=cpp
+OS_FontStretch_ToOpenTypeStretch_0=cast=FontStretch^,flags=gcobject
+
+OS_FontStretches_Normal=accessor=FontStretches::Normal,flags=const gcobject
+
+OS_FontStyles_Italic=accessor=FontStyles::Italic,flags=const gcobject
+
+OS_FontStyles_Normal=accessor=FontStyles::Normal,flags=const gcobject
+
+OS_FontStyles_Oblique=accessor=FontStyles::Oblique,flags=const gcobject
+
+OS_FontWeight_FromOpenTypeWeight=accessor=FontWeight::FromOpenTypeWeight,flags=gcobject
+OS_FontWeight_FromOpenTypeWeight_0=
+
+OS_FontWeight_ToOpenTypeWeight=flags=cpp
+OS_FontWeight_ToOpenTypeWeight_0=cast=(FontWeight^),flags=gcobject
+
+OS_FontWeights_Bold=accessor=FontWeights::Bold,flags=const gcobject
+
+OS_FontWeights_Normal=accessor=FontWeights::Normal,flags=const gcobject
+
+OS_Fonts_SystemTypefaces=accessor=Fonts::SystemTypefaces,flags=const gcobject
+
+OS_FormattedText_Baseline=flags=getter
+OS_FormattedText_Baseline_0=cast=FormattedText^,flags=gcobject
+
+OS_FormattedText_BuildGeometry=flags=cpp gcobject
+OS_FormattedText_BuildGeometry_0=cast=FormattedText^,flags=gcobject
+OS_FormattedText_BuildGeometry_1=cast=Point,flags=gcobject
+
+OS_FormattedText_BuildHighlightGeometry=flags=cpp gcobject
+OS_FormattedText_BuildHighlightGeometry_0=cast=FormattedText^,flags=gcobject
+OS_FormattedText_BuildHighlightGeometry_1=cast=Point,flags=gcobject
+
+OS_FormattedText_Height=flags=getter
+OS_FormattedText_Height_0=cast=FormattedText^,flags=gcobject
+
+OS_FormattedText_WidthIncludingTrailingWhitespace=flags=getter
+OS_FormattedText_WidthIncludingTrailingWhitespace_0=cast=FormattedText^,flags=gcobject
+
+OS_FormsCommonDialog_ShowDialog=flags=cpp
+OS_FormsCommonDialog_ShowDialog_0=cast=(System::Windows::Forms::CommonDialog^),flags=gcobject
+
+OS_FrameworkContentElement_Parent=flags=gcobject getter
+OS_FrameworkContentElement_Parent_0=cast=(FrameworkContentElement^),flags=gcobject
+
+OS_FrameworkContentElement_1Tag__I=flags=getter
+OS_FrameworkContentElement_1Tag__I_0=cast=(FrameworkContentElement^),flags=gcobject
+
+OS_FrameworkContentElement_1Tag__II=flags=setter
+OS_FrameworkContentElement_1Tag__II_0=cast=FrameworkContentElement^,flags=gcobject
+OS_FrameworkContentElement_1Tag__II_1=
+
+OS_FrameworkContentElement_typeid=accessor=FrameworkContentElement::typeid,flags=const gcobject
+
+OS_FrameworkElementFactory_AppendChild=flags=cpp
+OS_FrameworkElementFactory_AppendChild_0=cast=FrameworkElementFactory^,flags=gcobject
+OS_FrameworkElementFactory_AppendChild_1=cast=FrameworkElementFactory^,flags=gcobject
+
+OS_FrameworkElementFactory_SetBinding=flags=cpp
+OS_FrameworkElementFactory_SetBinding_0=cast=FrameworkElementFactory^,flags=gcobject
+OS_FrameworkElementFactory_SetBinding_1=cast=DependencyProperty^,flags=gcobject
+OS_FrameworkElementFactory_SetBinding_2=cast=BindingBase^,flags=gcobject
+
+OS_FrameworkElementFactory_1SetValue__III=flags=cpp
+OS_FrameworkElementFactory_1SetValue__III_0=cast=(FrameworkElementFactory^),flags=gcobject
+OS_FrameworkElementFactory_1SetValue__III_1=cast=DependencyProperty^,flags=gcobject
+OS_FrameworkElementFactory_1SetValue__III_2=cast=Object^,flags=gcobject
+
+OS_FrameworkElementFactory_1SetValue__IIZ=flags=cpp
+OS_FrameworkElementFactory_1SetValue__IIZ_0=cast=(FrameworkElementFactory^),flags=gcobject
+OS_FrameworkElementFactory_1SetValue__IIZ_1=cast=DependencyProperty^,flags=gcobject
+OS_FrameworkElementFactory_1SetValue__IIZ_2=cast=(Boolean)
+
+OS_FrameworkElementFactory_SetValueDock=accessor=SetValue,flags=cpp
+OS_FrameworkElementFactory_SetValueDock_0=cast=(FrameworkElementFactory^),flags=gcobject
+OS_FrameworkElementFactory_SetValueDock_1=cast=(DependencyProperty^),flags=gcobject
+OS_FrameworkElementFactory_SetValueDock_2=cast=Dock
+
+OS_FrameworkElementFactory_SetValueOrientation=accessor=SetValue,flags=cpp
+OS_FrameworkElementFactory_SetValueOrientation_0=cast=(FrameworkElementFactory^),flags=gcobject
+OS_FrameworkElementFactory_SetValueOrientation_1=cast=(DependencyProperty^),flags=gcobject
+OS_FrameworkElementFactory_SetValueOrientation_2=cast=Orientation
+
+OS_FrameworkElementFactory_SetValueStretch=accessor=SetValue,flags=cpp
+OS_FrameworkElementFactory_SetValueStretch_0=cast=(FrameworkElementFactory^),flags=gcobject
+OS_FrameworkElementFactory_SetValueStretch_1=cast=(DependencyProperty^),flags=gcobject
+OS_FrameworkElementFactory_SetValueStretch_2=cast=Stretch
+
+OS_FrameworkElementFactory_SetValueVerticalAlignment=accessor=SetValue,flags=cpp
+OS_FrameworkElementFactory_SetValueVerticalAlignment_0=cast=(FrameworkElementFactory^),flags=gcobject
+OS_FrameworkElementFactory_SetValueVerticalAlignment_1=cast=(DependencyProperty^),flags=gcobject
+OS_FrameworkElementFactory_SetValueVerticalAlignment_2=cast=VerticalAlignment
+
+OS_FrameworkElementFactory_SetValueVisibility=accessor=SetValue,flags=cpp
+OS_FrameworkElementFactory_SetValueVisibility_0=cast=(FrameworkElementFactory^),flags=gcobject
+OS_FrameworkElementFactory_SetValueVisibility_1=cast=(DependencyProperty^),flags=gcobject
+OS_FrameworkElementFactory_SetValueVisibility_2=cast=Visibility
+
+OS_FrameworkElement_ActualHeight=flags=getter
+OS_FrameworkElement_ActualHeight_0=cast=(FrameworkElement^),flags=gcobject
+
+OS_FrameworkElement_ActualHeightProperty=accessor=FrameworkElement::ActualHeightProperty,flags=const gcobject
+
+OS_FrameworkElement_ActualWidth=flags=getter
+OS_FrameworkElement_ActualWidth_0=cast=(FrameworkElement^),flags=gcobject
+
+OS_FrameworkElement_ActualWidthProperty=accessor=FrameworkElement::ActualWidthProperty,flags=const gcobject
+
+OS_FrameworkElement_BeginInit=flags=cpp
+OS_FrameworkElement_BeginInit_0=cast=FrameworkElement^,flags=gcobject
+
+OS_FrameworkElement_BringIntoView=flags=cpp
+OS_FrameworkElement_BringIntoView_0=cast=FrameworkElement^,flags=gcobject
+
+OS_FrameworkElement_ContextMenu=flags=setter
+OS_FrameworkElement_ContextMenu_0=cast=FrameworkElement^,flags=gcobject
+OS_FrameworkElement_ContextMenu_1=cast=ContextMenu^,flags=gcobject
+
+OS_FrameworkElement_ContextMenuClosing=flags=adder
+OS_FrameworkElement_ContextMenuClosing_0=cast=FrameworkElement^,flags=gcobject
+OS_FrameworkElement_ContextMenuClosing_1=cast=(ContextMenuEventHandler^),flags=gcobject
+
+OS_FrameworkElement_ContextMenuOpening=flags=adder
+OS_FrameworkElement_ContextMenuOpening_0=cast=FrameworkElement^,flags=gcobject
+OS_FrameworkElement_ContextMenuOpening_1=cast=(ContextMenuEventHandler^),flags=gcobject
+
+OS_FrameworkElement_Cursor=flags=setter
+OS_FrameworkElement_Cursor_0=cast=FrameworkElement^,flags=gcobject
+OS_FrameworkElement_Cursor_1=cast=Cursor^,flags=gcobject
+
+OS_FrameworkElement_CursorProperty=accessor=FrameworkElement::CursorProperty,flags=const gcobject
+
+OS_FrameworkElement_GetBindingExpression=flags=cpp gcobject
+OS_FrameworkElement_GetBindingExpression_0=cast=FrameworkElement^,flags=gcobject
+OS_FrameworkElement_GetBindingExpression_1=cast=DependencyProperty^,flags=gcobject
+
+OS_FrameworkElement_1Height__I=flags=getter
+OS_FrameworkElement_1Height__I_0=cast=(FrameworkElement^),flags=gcobject
+
+OS_FrameworkElement_1Height__ID=flags=setter
+OS_FrameworkElement_1Height__ID_0=cast=(FrameworkElement^),flags=gcobject
+OS_FrameworkElement_1Height__ID_1=
+
+OS_FrameworkElement_HeightProperty=accessor=FrameworkElement::HeightProperty,flags=const gcobject
+
+OS_FrameworkElement_HorizontalAlignment=flags=setter
+OS_FrameworkElement_HorizontalAlignment_0=cast=FrameworkElement^,flags=gcobject
+OS_FrameworkElement_HorizontalAlignment_1=cast=(HorizontalAlignment)
+
+OS_FrameworkElement_IsLoaded=flags=getter
+OS_FrameworkElement_IsLoaded_0=cast=FrameworkElement^,flags=gcobject
+
+OS_FrameworkElement_Loaded=flags=adder
+OS_FrameworkElement_Loaded_0=cast=FrameworkElement^,flags=gcobject
+OS_FrameworkElement_Loaded_1=cast=RoutedEventHandler^,flags=gcobject
+
+OS_FrameworkElement_Margin=flags=setter
+OS_FrameworkElement_Margin_0=cast=FrameworkElement^,flags=gcobject
+OS_FrameworkElement_Margin_1=cast=(Thickness),flags=gcobject
+
+OS_FrameworkElement_MarginProperty=accessor=FrameworkElement::MarginProperty,flags=const gcobject
+
+OS_FrameworkElement_1MinHeight__I=flags=getter
+OS_FrameworkElement_1MinHeight__I_0=cast=(FrameworkElement^),flags=gcobject
+
+OS_FrameworkElement_1MinHeight__ID=flags=setter
+OS_FrameworkElement_1MinHeight__ID_0=cast=(FrameworkElement^),flags=gcobject
+OS_FrameworkElement_1MinHeight__ID_1=
+
+OS_FrameworkElement_1MinWidth__I=flags=getter
+OS_FrameworkElement_1MinWidth__I_0=cast=(FrameworkElement^),flags=gcobject
+
+OS_FrameworkElement_1MinWidth__ID=flags=setter
+OS_FrameworkElement_1MinWidth__ID_0=cast=(FrameworkElement^),flags=gcobject
+OS_FrameworkElement_1MinWidth__ID_1=
+
+OS_FrameworkElement_Name=flags=gcobject getter
+OS_FrameworkElement_Name_0=cast=(FrameworkElement^),flags=gcobject
+
+OS_FrameworkElement_NameProperty=accessor=FrameworkElement::NameProperty,flags=const gcobject
+
+OS_FrameworkElement_Parent=flags=gcobject getter
+OS_FrameworkElement_Parent_0=cast=(FrameworkElement^),flags=gcobject
+
+OS_FrameworkElement_SizeChanged=flags=adder
+OS_FrameworkElement_SizeChanged_0=cast=FrameworkElement^,flags=gcobject
+OS_FrameworkElement_SizeChanged_1=cast=(SizeChangedEventHandler^),flags=gcobject
+
+OS_FrameworkElement_1Tag__I=flags=gcobject getter
+OS_FrameworkElement_1Tag__I_0=cast=(FrameworkElement^),flags=gcobject
+
+OS_FrameworkElement_1Tag__II=flags=setter
+OS_FrameworkElement_1Tag__II_0=cast=(FrameworkElement^),flags=gcobject
+OS_FrameworkElement_1Tag__II_1=cast=Object^,flags=gcobject
+
+OS_FrameworkElement_1ToolTip__I=flags=gcobject getter
+OS_FrameworkElement_1ToolTip__I_0=cast=FrameworkElement^,flags=gcobject
+
+OS_FrameworkElement_1ToolTip__II=flags=setter
+OS_FrameworkElement_1ToolTip__II_0=cast=FrameworkElement^,flags=gcobject
+OS_FrameworkElement_1ToolTip__II_1=cast=Object^,flags=gcobject
+
+OS_FrameworkElement_VerticalAlignment=flags=setter
+OS_FrameworkElement_VerticalAlignment_0=cast=FrameworkElement^,flags=gcobject
+OS_FrameworkElement_VerticalAlignment_1=cast=VerticalAlignment
+
+OS_FrameworkElement_VerticalAlignmentProperty=accessor=FrameworkElement::VerticalAlignmentProperty,flags=const gcobject
+
+OS_FrameworkElement_VisibilityProperty=accessor=FrameworkElement::VisibilityProperty,flags=const gcobject
+
+OS_FrameworkElement_1Width__I=flags=getter
+OS_FrameworkElement_1Width__I_0=cast=(FrameworkElement^),flags=gcobject
+
+OS_FrameworkElement_1Width__ID=flags=setter
+OS_FrameworkElement_1Width__ID_0=cast=(FrameworkElement^),flags=gcobject
+OS_FrameworkElement_1Width__ID_1=
+
+OS_FrameworkElement_WidthProperty=accessor=FrameworkElement::WidthProperty,flags=const gcobject
+
+OS_FrameworkElement_typeid=accessor=FrameworkElement::typeid,flags=const gcobject
+
+OS_FrameworkTemplate_FindName=flags=cpp gcobject
+OS_FrameworkTemplate_FindName_0=cast=FrameworkTemplate^,flags=gcobject
+OS_FrameworkTemplate_FindName_1=cast=String^,flags=gcobject
+OS_FrameworkTemplate_FindName_2=cast=FrameworkElement^,flags=gcobject
+
+OS_FrameworkTemplate_VisualTree=flags=setter
+OS_FrameworkTemplate_VisualTree_0=cast=FrameworkTemplate^,flags=gcobject
+OS_FrameworkTemplate_VisualTree_1=cast=FrameworkElementFactory^,flags=gcobject
+
+OS_Freezable_CanFreeze=flags=getter
+OS_Freezable_CanFreeze_0=cast=Freezable^,flags=gcobject
+
+OS_Freezable_Clone=flags=cpp gcobject
+OS_Freezable_Clone_0=cast=Freezable^,flags=gcobject
+
+OS_Freezable_Freeze=flags=cpp
+OS_Freezable_Freeze_0=cast=Freezable^,flags=gcobject
+
+OS_GCHandle_Free=flags=no_gen
+OS_GCHandle_Free_0=
+
+OS_GeometryCollection_Add=flags=cpp
+OS_GeometryCollection_Add_0=cast=(GeometryCollection^),flags=gcobject
+OS_GeometryCollection_Add_1=cast=Geometry^,flags=gcobject
+
+OS_GeometryCollection_Clear=flags=cpp
+OS_GeometryCollection_Clear_0=cast=GeometryCollection^,flags=gcobject
+
+OS_GeometryCollection_Count=flags=getter
+OS_GeometryCollection_Count_0=cast=(GeometryCollection^),flags=gcobject
+
+OS_GeometryCollection_Remove=flags=cpp
+OS_GeometryCollection_Remove_0=cast=(GeometryCollection^),flags=gcobject
+OS_GeometryCollection_Remove_1=cast=Geometry^,flags=gcobject
+
+OS_GeometryGroup_1Children__I=flags=gcobject getter
+OS_GeometryGroup_1Children__I_0=cast=(GeometryGroup^),flags=gcobject
+
+OS_GeometryGroup_1Children__II=flags=gcobject getter
+OS_GeometryGroup_1Children__II_0=cast=(GeometryGroup^),flags=gcobject
+OS_GeometryGroup_1Children__II_1=
+
+OS_Geometry_Bounds=flags=gcobject getter
+OS_Geometry_Bounds_0=cast=Geometry^,flags=gcobject
+
+OS_Geometry_Clone=flags=cpp gcobject
+OS_Geometry_Clone_0=cast=(Geometry^),flags=gcobject
+
+OS_Geometry_FillContains=flags=cpp
+OS_Geometry_FillContains_0=cast=Geometry^,flags=gcobject
+OS_Geometry_FillContains_1=cast=Point,flags=gcobject
+
+OS_Geometry_FillContainsWithDetail=flags=cpp
+OS_Geometry_FillContainsWithDetail_0=cast=Geometry^,flags=gcobject
+OS_Geometry_FillContainsWithDetail_1=cast=Geometry^,flags=gcobject
+
+OS_Geometry_GetFlattenedPathGeometry=flags=cpp gcobject
+OS_Geometry_GetFlattenedPathGeometry_0=cast=Geometry^,flags=gcobject
+
+OS_Geometry_IsEmpty=flags=cpp
+OS_Geometry_IsEmpty_0=cast=Geometry^,flags=gcobject
+
+OS_Geometry_StrokeContains=flags=cpp
+OS_Geometry_StrokeContains_0=cast=Geometry^,flags=gcobject
+OS_Geometry_StrokeContains_1=cast=Pen^,flags=gcobject
+OS_Geometry_StrokeContains_2=cast=Point,flags=gcobject
+
+OS_Geometry_1Transform__I=flags=gcobject getter
+OS_Geometry_1Transform__I_0=cast=Geometry^,flags=gcobject
+
+OS_Geometry_1Transform__II=flags=setter
+OS_Geometry_1Transform__II_0=cast=(Geometry^),flags=gcobject
+OS_Geometry_1Transform__II_1=cast=Transform^,flags=gcobject
+
+OS_GetCursorPos=
+OS_GetCursorPos_0=cast=LPPOINT
+
+OS_GetIconInfo=
+OS_GetIconInfo_0=cast=HICON
+OS_GetIconInfo_1=
+
+OS_GetKeyboardState=
+OS_GetKeyboardState_0=cast=(PBYTE)
+
+OS_GetModuleHandleW=
+OS_GetModuleHandleW_0=cast=LPCWSTR
+
+OS_GlyphRun_BidiLevel=flags=getter
+OS_GlyphRun_BidiLevel_0=cast=GlyphRun^,flags=gcobject
+
+OS_GradientBrush_MappingMode=flags=setter
+OS_GradientBrush_MappingMode_0=cast=(GradientBrush^),flags=gcobject
+OS_GradientBrush_MappingMode_1=cast=BrushMappingMode
+
+OS_GradientBrush_SpreadMethod=flags=setter
+OS_GradientBrush_SpreadMethod_0=cast=(GradientBrush^),flags=gcobject
+OS_GradientBrush_SpreadMethod_1=cast=GradientSpreadMethod
+
+OS_GridViewColumnCollection_Clear=flags=cpp
+OS_GridViewColumnCollection_Clear_0=cast=(GridViewColumnCollection^),flags=gcobject
+
+OS_GridViewColumnCollection_Count=flags=getter
+OS_GridViewColumnCollection_Count_0=cast=(GridViewColumnCollection^),flags=gcobject
+
+OS_GridViewColumnCollection_IndexOf=flags=cpp
+OS_GridViewColumnCollection_IndexOf_0=cast=(GridViewColumnCollection ^),flags=gcobject
+OS_GridViewColumnCollection_IndexOf_1=cast=(GridViewColumn^),flags=gcobject
+
+OS_GridViewColumnCollection_Insert=flags=cpp
+OS_GridViewColumnCollection_Insert_0=cast=(GridViewColumnCollection^),flags=gcobject
+OS_GridViewColumnCollection_Insert_1=
+OS_GridViewColumnCollection_Insert_2=cast=GridViewColumn^,flags=gcobject
+
+OS_GridViewColumnCollection_Remove=flags=cpp
+OS_GridViewColumnCollection_Remove_0=cast=GridViewColumnCollection^,flags=gcobject
+OS_GridViewColumnCollection_Remove_1=cast=GridViewColumn^,flags=gcobject
+
+OS_GridViewColumnCollection_default=flags=gcobject getter
+OS_GridViewColumnCollection_default_0=cast=GridViewColumnCollection^,flags=gcobject
+OS_GridViewColumnCollection_default_1=
+
+OS_GridViewColumnHeader_Content=flags=setter
+OS_GridViewColumnHeader_Content_0=cast=GridViewColumnHeader^,flags=gcobject
+OS_GridViewColumnHeader_Content_1=cast=Object^,flags=gcobject
+
+OS_GridViewColumn_ActualWidth=flags=getter
+OS_GridViewColumn_ActualWidth_0=cast=GridViewColumn^,flags=gcobject
+
+OS_GridViewColumn_1CellTemplate__I=flags=gcobject getter
+OS_GridViewColumn_1CellTemplate__I_0=cast=GridViewColumn^,flags=gcobject
+
+OS_GridViewColumn_1CellTemplate__II=flags=setter
+OS_GridViewColumn_1CellTemplate__II_0=cast=GridViewColumn^,flags=gcobject
+OS_GridViewColumn_1CellTemplate__II_1=cast=DataTemplate^,flags=gcobject
+
+OS_GridViewColumn_1Header__I=flags=gcobject getter
+OS_GridViewColumn_1Header__I_0=cast=GridViewColumn^,flags=gcobject
+
+OS_GridViewColumn_1Header__II=flags=setter
+OS_GridViewColumn_1Header__II_0=cast=GridViewColumn^,flags=gcobject
+OS_GridViewColumn_1Header__II_1=cast=Object^,flags=gcobject
+
+OS_GridViewColumn_1HeaderTemplate__I=flags=gcobject getter
+OS_GridViewColumn_1HeaderTemplate__I_0=cast=GridViewColumn^,flags=gcobject
+
+OS_GridViewColumn_1HeaderTemplate__II=flags=setter
+OS_GridViewColumn_1HeaderTemplate__II_0=cast=GridViewColumn^,flags=gcobject
+OS_GridViewColumn_1HeaderTemplate__II_1=cast=DataTemplate^,flags=gcobject
+
+OS_GridViewColumn_1Width__I=flags=getter
+OS_GridViewColumn_1Width__I_0=cast=GridViewColumn^,flags=gcobject
+
+OS_GridViewColumn_1Width__ID=flags=setter
+OS_GridViewColumn_1Width__ID_0=cast=GridViewColumn^,flags=gcobject
+OS_GridViewColumn_1Width__ID_1=
+
+OS_GridViewColumn_WidthProperty=accessor=GridViewColumn::WidthProperty,flags=const gcobject
+
+OS_GridViewHeaderRowPresenter_ColumnsProperty=accessor=GridViewHeaderRowPresenter::ColumnsProperty,flags=const gcobject
+
+OS_GridViewHeaderRowPresenter_typeid=accessor=GridViewHeaderRowPresenter::typeid,flags=const gcobject
+
+OS_GridViewRowPresenterBase_Columns=flags=setter
+OS_GridViewRowPresenterBase_Columns_0=cast=GridViewRowPresenterBase^,flags=gcobject
+OS_GridViewRowPresenterBase_Columns_1=cast=GridViewColumnCollection^,flags=gcobject
+
+OS_GridViewRowPresenter_1Content__I=flags=gcobject getter
+OS_GridViewRowPresenter_1Content__I_0=cast=GridViewRowPresenter^,flags=gcobject
+
+OS_GridViewRowPresenter_1Content__II=flags=setter
+OS_GridViewRowPresenter_1Content__II_0=cast=GridViewRowPresenter^,flags=gcobject
+OS_GridViewRowPresenter_1Content__II_1=cast=Object^,flags=gcobject
+
+OS_GridViewRowPresenter_typeid=accessor=GridViewRowPresenter::typeid,flags=const gcobject
+
+OS_GridView_AllowsColumnReorder=flags=setter
+OS_GridView_AllowsColumnReorder_0=cast=GridView^,flags=gcobject
+OS_GridView_AllowsColumnReorder_1=
+
+OS_GridView_ColumnHeaderContainerStyle=flags=setter
+OS_GridView_ColumnHeaderContainerStyle_0=cast=GridView^,flags=gcobject
+OS_GridView_ColumnHeaderContainerStyle_1=cast=Style^,flags=gcobject
+
+OS_GridView_Columns=flags=gcobject getter
+OS_GridView_Columns_0=cast=GridView^,flags=gcobject
+
+OS_Grid_ColumnDefinitions=flags=gcobject getter
+OS_Grid_ColumnDefinitions_0=cast=Grid^,flags=gcobject
+
+OS_Grid_RowDefinitions=flags=gcobject getter
+OS_Grid_RowDefinitions_0=cast=Grid^,flags=gcobject
+
+OS_Grid_SetColumn=accessor=Grid::SetColumn
+OS_Grid_SetColumn_0=cast=(UIElement^),flags=gcobject
+OS_Grid_SetColumn_1=
+
+OS_Grid_SetColumnSpan=accessor=Grid::SetColumnSpan
+OS_Grid_SetColumnSpan_0=cast=(UIElement^),flags=gcobject
+OS_Grid_SetColumnSpan_1=
+
+OS_Grid_SetRow=accessor=Grid::SetRow
+OS_Grid_SetRow_0=cast=UIElement^,flags=gcobject
+OS_Grid_SetRow_1=
+
+OS_Grid_SetRowSpan=accessor=Grid::SetRowSpan
+OS_Grid_SetRowSpan_0=cast=(UIElement^),flags=gcobject
+OS_Grid_SetRowSpan_1=
+
+OS_HeaderedContentControl_1Header__I=flags=gcobject getter
+OS_HeaderedContentControl_1Header__I_0=cast=(HeaderedContentControl^),flags=gcobject
+
+OS_HeaderedContentControl_1Header__II=flags=setter
+OS_HeaderedContentControl_1Header__II_0=cast=(HeaderedContentControl^),flags=gcobject
+OS_HeaderedContentControl_1Header__II_1=cast=(Object^),flags=gcobject
+
+OS_HeaderedItemsControl_1Header__I=flags=gcobject getter
+OS_HeaderedItemsControl_1Header__I_0=cast=HeaderedItemsControl^,flags=gcobject
+
+OS_HeaderedItemsControl_1Header__II=flags=setter
+OS_HeaderedItemsControl_1Header__II_0=cast=HeaderedItemsControl^,flags=gcobject
+OS_HeaderedItemsControl_1Header__II_1=cast=(Object^),flags=gcobject
+
+OS_Hyperlink_Click=flags=adder
+OS_Hyperlink_Click_0=cast=Hyperlink^,flags=gcobject
+OS_Hyperlink_Click_1=cast=RoutedEventHandler^,flags=gcobject
+
+OS_ICollection_Count=flags=getter
+OS_ICollection_Count_0=cast=ICollection^),flags=gcobject
+
+OS_IEnumerator_Current=flags=gcobject getter
+OS_IEnumerator_Current_0=cast=IEnumerator^,flags=gcobject
+
+OS_IEnumerator_MoveNext=flags=cpp
+OS_IEnumerator_MoveNext_0=cast=IEnumerator^,flags=gcobject
+
+OS_IList_Add=flags=cpp
+OS_IList_Add_0=cast=IList^,flags=gcobject
+OS_IList_Add_1=cast=Object^,flags=gcobject
+
+OS_IList_GetEnumerator=flags=cpp gcobject
+OS_IList_GetEnumerator_0=cast=IList^,flags=gcobject
+
+OS_IList_default=flags=gcobject getter
+OS_IList_default_0=cast=IList^,flags=gcobject
+OS_IList_default_1=
+
+OS_ImageSource_typeid=accessor=ImageSource::typeid,flags=const gcobject
+
+OS_Image_Source=flags=setter
+OS_Image_Source_0=cast=Image^,flags=gcobject
+OS_Image_Source_1=cast=ImageSource^,flags=gcobject
+
+OS_Image_SourceProperty=accessor=Image::SourceProperty,flags=const gcobject
+
+OS_Image_Stretch=flags=setter
+OS_Image_Stretch_0=cast=Image^,flags=gcobject
+OS_Image_Stretch_1=cast=Stretch
+
+OS_Image_StretchProperty=accessor=Image::StretchProperty,flags=const gcobject
+
+OS_Image_typeid=accessor=Image::typeid,flags=const gcobject
+
+OS_Imaging_CreateBitmapSourceFromHIcon=accessor=System::Windows::Interop::Imaging::CreateBitmapSourceFromHIcon,flags=gcobject
+OS_Imaging_CreateBitmapSourceFromHIcon_0=cast=IntPtr
+OS_Imaging_CreateBitmapSourceFromHIcon_1=cast=Int32Rect,flags=gcobject
+OS_Imaging_CreateBitmapSourceFromHIcon_2=cast=BitmapSizeOptions^,flags=gcobject
+
+OS_IndexedGlyphRunCollection_Current=flags=gcobject getter
+OS_IndexedGlyphRunCollection_Current_0=cast=(IEnumerator^),flags=gcobject
+
+OS_IndexedGlyphRunCollection_GetEnumerator=flags=cpp gcobject
+OS_IndexedGlyphRunCollection_GetEnumerator_0=cast=IEnumerable^,flags=gcobject
+
+OS_IndexedGlyphRun_GlyphRun=flags=gcobject getter
+OS_IndexedGlyphRun_GlyphRun_0=cast=IndexedGlyphRun^,flags=gcobject
+
+OS_IndexedGlyphRun_TextSourceCharacterIndex=flags=getter
+OS_IndexedGlyphRun_TextSourceCharacterIndex_0=cast=IndexedGlyphRun^,flags=gcobject
+
+OS_IndexedGlyphRun_TextSourceLength=flags=getter
+OS_IndexedGlyphRun_TextSourceLength_0=cast=IndexedGlyphRun^,flags=gcobject
+
+OS_InlineCollection_Add=flags=cpp
+OS_InlineCollection_Add_0=cast=InlineCollection^,flags=gcobject
+OS_InlineCollection_Add_1=cast=Inline^,flags=gcobject
+
+OS_InlineCollection_Clear=flags=cpp
+OS_InlineCollection_Clear_0=cast=InlineCollection^,flags=gcobject
+
+OS_InputEventArgs_Timestamp=flags=getter
+OS_InputEventArgs_Timestamp_0=cast=InputEventArgs^,flags=gcobject
+
+OS_Int32Rect_Empty=accessor=Int32Rect::Empty,flags=const gcobject
+
+OS_IntPtr_ToInt32=flags=cpp
+OS_IntPtr_ToInt32_0=cast=(IntPtr^),flags=gcobject
+
+OS_ItemCollection_Add=flags=cpp
+OS_ItemCollection_Add_0=cast=(ItemCollection^),flags=gcobject
+OS_ItemCollection_Add_1=cast=(Object^),flags=gcobject
+
+OS_ItemCollection_Clear=flags=cpp
+OS_ItemCollection_Clear_0=cast=(ItemCollection^),flags=gcobject
+
+OS_ItemCollection_Count=flags=getter
+OS_ItemCollection_Count_0=cast=(ItemCollection^),flags=gcobject
+
+OS_ItemCollection_CurrentItem=flags=gcobject getter
+OS_ItemCollection_CurrentItem_0=cast=(ItemCollection^),flags=gcobject
+
+OS_ItemCollection_CurrentPosition=flags=getter
+OS_ItemCollection_CurrentPosition_0=cast=ItemCollection^,flags=gcobject
+
+OS_ItemCollection_GetItemAt=flags=cpp gcobject
+OS_ItemCollection_GetItemAt_0=cast=(ItemCollection^),flags=gcobject
+OS_ItemCollection_GetItemAt_1=
+
+OS_ItemCollection_IndexOf=flags=cpp
+OS_ItemCollection_IndexOf_0=cast=ItemCollection^,flags=gcobject
+OS_ItemCollection_IndexOf_1=cast=(Object^),flags=gcobject
+
+OS_ItemCollection_Insert=flags=cpp
+OS_ItemCollection_Insert_0=cast=(ItemCollection^),flags=gcobject
+OS_ItemCollection_Insert_1=
+OS_ItemCollection_Insert_2=cast=(Object^),flags=gcobject
+
+OS_ItemCollection_Remove=flags=cpp
+OS_ItemCollection_Remove_0=cast=ItemCollection^,flags=gcobject
+OS_ItemCollection_Remove_1=cast=Object^,flags=gcobject
+
+OS_ItemCollection_RemoveAt=flags=cpp
+OS_ItemCollection_RemoveAt_0=cast=(ItemCollection^),flags=gcobject
+OS_ItemCollection_RemoveAt_1=
+
+OS_ItemsControl_HasItems=flags=getter
+OS_ItemsControl_HasItems_0=cast=ItemsControl^,flags=gcobject
+
+OS_ItemsControl_Items=flags=gcobject getter
+OS_ItemsControl_Items_0=cast=(ItemsControl^),flags=gcobject
+
+OS_ItemsControl_ItemsSource=flags=setter
+OS_ItemsControl_ItemsSource_0=cast=ItemsControl^,flags=gcobject
+OS_ItemsControl_ItemsSource_1=cast=IEnumerable^,flags=gcobject
+
+OS_ItemsPresenter_typeid=accessor=ItemsPresenter::typeid,flags=const gcobject
+
+OS_JNIGetObject=flags=no_gen
+OS_JNIGetObject_0=
+
+OS_KeyEventArgs_IsDown=flags=getter
+OS_KeyEventArgs_IsDown_0=cast=(KeyEventArgs^),flags=gcobject
+
+OS_KeyEventArgs_IsRepeat=flags=getter
+OS_KeyEventArgs_IsRepeat_0=cast=(KeyEventArgs^),flags=gcobject
+
+OS_KeyEventArgs_IsToggled=flags=getter
+OS_KeyEventArgs_IsToggled_0=cast=(KeyEventArgs^),flags=gcobject
+
+OS_KeyEventArgs_Key=flags=getter
+OS_KeyEventArgs_Key_0=cast=(KeyEventArgs^),flags=gcobject
+
+OS_KeyEventArgs_SystemKey=flags=getter
+OS_KeyEventArgs_SystemKey_0=cast=(KeyEventArgs^),flags=gcobject
+
+OS_KeyInterop_VirtualKeyFromKey=accessor=KeyInterop::VirtualKeyFromKey
+OS_KeyInterop_VirtualKeyFromKey_0=cast=Key
+
+OS_KeyTime_Uniform=accessor=KeyTime::Uniform,flags=const gcobject
+
+OS_KeyboardDevice_Modifiers=flags=getter
+OS_KeyboardDevice_Modifiers_0=cast=(KeyboardDevice^),flags=gcobject
+
+OS_KeyboardEventArgs_KeyboardDevice=flags=gcobject getter
+OS_KeyboardEventArgs_KeyboardDevice_0=cast=KeyboardEventArgs^,flags=gcobject
+
+OS_KeyboardNavigation_SetTabNavigation=accessor=KeyboardNavigation::SetTabNavigation
+OS_KeyboardNavigation_SetTabNavigation_0=cast=DependencyObject^,flags=gcobject
+OS_KeyboardNavigation_SetTabNavigation_1=cast=KeyboardNavigationMode
+
+OS_Keyboard_FocusedElement=accessor=Keyboard::FocusedElement,flags=const gcobject
+
+OS_Keyboard_Modifiers=accessor=Keyboard::Modifiers,flags=const
+
+OS_ListBoxItem_1IsSelected__I=flags=getter
+OS_ListBoxItem_1IsSelected__I_0=cast=ListBoxItem^,flags=gcobject
+
+OS_ListBoxItem_1IsSelected__IZ=flags=setter
+OS_ListBoxItem_1IsSelected__IZ_0=cast=ListBoxItem^,flags=gcobject
+OS_ListBoxItem_1IsSelected__IZ_1=
+
+OS_ListBox_ScrollIntoView=flags=cpp
+OS_ListBox_ScrollIntoView_0=cast=ListBox^,flags=gcobject
+OS_ListBox_ScrollIntoView_1=cast=(Object^),flags=gcobject
+
+OS_ListBox_SelectAll=flags=cpp
+OS_ListBox_SelectAll_0=cast=ListBox^,flags=gcobject
+
+OS_ListBox_SelectedItems=flags=gcobject getter
+OS_ListBox_SelectedItems_0=cast=ListBox^,flags=gcobject
+
+OS_ListBox_SelectionMode=flags=setter
+OS_ListBox_SelectionMode_0=cast=(ListBox^),flags=gcobject
+OS_ListBox_SelectionMode_1=cast=(SelectionMode)
+
+OS_ListBox_UnselectAll=flags=cpp
+OS_ListBox_UnselectAll_0=cast=ListBox^,flags=gcobject
+
+OS_ListView_View=flags=setter
+OS_ListView_View_0=cast=ListView^,flags=gcobject
+OS_ListView_View_1=cast=ViewBase^,flags=gcobject
+
+OS_LoadImage=
+OS_LoadImage_0=cast=HINSTANCE
+OS_LoadImage_1=cast=LPCTSTR
+OS_LoadImage_2=cast=UINT
+OS_LoadImage_3=
+OS_LoadImage_4=
+OS_LoadImage_5=cast=UINT
+
+OS_MapVirtualKeyW=
+OS_MapVirtualKeyW_0=
+OS_MapVirtualKeyW_1=
+
+OS_MatrixTransform_1Matrix__I=flags=gcobject getter
+OS_MatrixTransform_1Matrix__I_0=cast=(MatrixTransform^),flags=gcobject
+
+OS_MatrixTransform_1Matrix__II=flags=setter
+OS_MatrixTransform_1Matrix__II_0=cast=(MatrixTransform^),flags=gcobject
+OS_MatrixTransform_1Matrix__II_1=cast=(Matrix),flags=gcobject
+
+OS_Matrix_Invert=flags=cpp
+OS_Matrix_Invert_0=cast=(Matrix^),flags=gcobject
+
+OS_Matrix_IsIdentity=flags=getter
+OS_Matrix_IsIdentity_0=cast=(Matrix^),flags=gcobject
+
+OS_Matrix_1M11__I=flags=getter
+OS_Matrix_1M11__I_0=cast=(Matrix^),flags=gcobject
+
+OS_Matrix_1M11__ID=flags=setter
+OS_Matrix_1M11__ID_0=cast=(Matrix^),flags=gcobject
+OS_Matrix_1M11__ID_1=
+
+OS_Matrix_1M12__I=flags=getter
+OS_Matrix_1M12__I_0=cast=(Matrix^),flags=gcobject
+
+OS_Matrix_1M12__ID=flags=setter
+OS_Matrix_1M12__ID_0=cast=(Matrix^),flags=gcobject
+OS_Matrix_1M12__ID_1=
+
+OS_Matrix_1M21__I=flags=getter
+OS_Matrix_1M21__I_0=cast=(Matrix^),flags=gcobject
+
+OS_Matrix_1M21__ID=flags=setter
+OS_Matrix_1M21__ID_0=cast=(Matrix^),flags=gcobject
+OS_Matrix_1M21__ID_1=
+
+OS_Matrix_1M22__I=flags=getter
+OS_Matrix_1M22__I_0=cast=(Matrix^),flags=gcobject
+
+OS_Matrix_1M22__ID=flags=setter
+OS_Matrix_1M22__ID_0=cast=(Matrix^),flags=gcobject
+OS_Matrix_1M22__ID_1=
+
+OS_Matrix_Multiply=accessor=Matrix::Multiply,flags=gcobject
+OS_Matrix_Multiply_0=cast=(Matrix),flags=gcobject
+OS_Matrix_Multiply_1=cast=(Matrix),flags=gcobject
+
+OS_Matrix_1OffsetX__I=flags=getter
+OS_Matrix_1OffsetX__I_0=cast=(Matrix^),flags=gcobject
+
+OS_Matrix_1OffsetX__ID=flags=setter
+OS_Matrix_1OffsetX__ID_0=cast=(Matrix^),flags=gcobject
+OS_Matrix_1OffsetX__ID_1=
+
+OS_Matrix_1OffsetY__I=flags=getter
+OS_Matrix_1OffsetY__I_0=cast=(Matrix^),flags=gcobject
+
+OS_Matrix_1OffsetY__ID=flags=setter
+OS_Matrix_1OffsetY__ID_0=cast=(Matrix^),flags=gcobject
+OS_Matrix_1OffsetY__ID_1=
+
+OS_Matrix_RotatePrepend=flags=cpp
+OS_Matrix_RotatePrepend_0=cast=(Matrix^),flags=gcobject
+OS_Matrix_RotatePrepend_1=
+
+OS_Matrix_ScalePrepend=flags=cpp
+OS_Matrix_ScalePrepend_0=cast=(Matrix^),flags=gcobject
+OS_Matrix_ScalePrepend_1=
+OS_Matrix_ScalePrepend_2=
+
+OS_Matrix_Transform=flags=cpp gcobject
+OS_Matrix_Transform_0=cast=(Matrix^),flags=gcobject
+OS_Matrix_Transform_1=cast=Point,flags=gcobject
+
+OS_Matrix_TranslatePrepend=flags=cpp
+OS_Matrix_TranslatePrepend_0=cast=(Matrix^),flags=gcobject
+OS_Matrix_TranslatePrepend_1=
+OS_Matrix_TranslatePrepend_2=
+
+OS_MenuItem_Click=flags=adder
+OS_MenuItem_Click_0=cast=MenuItem^,flags=gcobject
+OS_MenuItem_Click_1=cast=RoutedEventHandler^,flags=gcobject
+
+OS_MenuItem_Icon=flags=setter
+OS_MenuItem_Icon_0=cast=MenuItem^,flags=gcobject
+OS_MenuItem_Icon_1=cast=Image^,flags=gcobject
+
+OS_MenuItem_InputGestureText=flags=setter
+OS_MenuItem_InputGestureText_0=cast=MenuItem^,flags=gcobject
+OS_MenuItem_InputGestureText_1=cast=String^,flags=gcobject
+
+OS_MenuItem_IsCheckable=flags=setter
+OS_MenuItem_IsCheckable_0=cast=MenuItem^,flags=gcobject
+OS_MenuItem_IsCheckable_1=
+
+OS_MenuItem_1IsChecked__I=flags=getter
+OS_MenuItem_1IsChecked__I_0=cast=MenuItem^,flags=gcobject
+
+OS_MenuItem_1IsChecked__IZ=flags=setter
+OS_MenuItem_1IsChecked__IZ_0=cast=MenuItem^,flags=gcobject
+OS_MenuItem_1IsChecked__IZ_1=
+
+OS_MenuItem_SubmenuClosed=flags=adder
+OS_MenuItem_SubmenuClosed_0=cast=MenuItem^,flags=gcobject
+OS_MenuItem_SubmenuClosed_1=cast=RoutedEventHandler^,flags=gcobject
+
+OS_MenuItem_SubmenuOpened=flags=adder
+OS_MenuItem_SubmenuOpened_0=cast=MenuItem^,flags=gcobject
+OS_MenuItem_SubmenuOpened_1=cast=RoutedEventHandler^,flags=gcobject
+
+OS_Menu_IsMainMenu=flags=setter
+OS_Menu_IsMainMenu_0=cast=Menu^,flags=gcobject
+OS_Menu_IsMainMenu_1=
+
+OS_MessageBox_Show=accessor=MessageBox::Show
+OS_MessageBox_Show_0=cast=String^,flags=gcobject
+OS_MessageBox_Show_1=cast=String^,flags=gcobject
+OS_MessageBox_Show_2=cast=MessageBoxButton
+OS_MessageBox_Show_3=cast=MessageBoxImage
+OS_MessageBox_Show_4=cast=MessageBoxResult
+
+OS_MouseButtonEventArgs_ButtonState=flags=getter
+OS_MouseButtonEventArgs_ButtonState_0=cast=(MouseButtonEventArgs^),flags=gcobject
+
+OS_MouseButtonEventArgs_ChangedButton=flags=getter
+OS_MouseButtonEventArgs_ChangedButton_0=cast=(MouseButtonEventArgs^),flags=gcobject
+
+OS_MouseButtonEventArgs_ClickCount=flags=getter
+OS_MouseButtonEventArgs_ClickCount_0=cast=(MouseButtonEventArgs^),flags=gcobject
+
+OS_MouseEventArgs_GetPosition=flags=cpp gcobject
+OS_MouseEventArgs_GetPosition_0=cast=MouseEventArgs^,flags=gcobject
+OS_MouseEventArgs_GetPosition_1=cast=(IInputElement^),flags=gcobject
+
+OS_MouseEventArgs_LeftButton=flags=getter
+OS_MouseEventArgs_LeftButton_0=cast=(MouseEventArgs^),flags=gcobject
+
+OS_MouseEventArgs_MiddleButton=flags=getter
+OS_MouseEventArgs_MiddleButton_0=cast=(MouseEventArgs^),flags=gcobject
+
+OS_MouseEventArgs_RightButton=flags=getter
+OS_MouseEventArgs_RightButton_0=cast=(MouseEventArgs^),flags=gcobject
+
+OS_MouseEventArgs_XButton1=flags=getter
+OS_MouseEventArgs_XButton1_0=cast=(MouseEventArgs^),flags=gcobject
+
+OS_MouseEventArgs_XButton2=flags=getter
+OS_MouseEventArgs_XButton2_0=cast=(MouseEventArgs^),flags=gcobject
+
+OS_MouseWheelEventArgs_Delta=flags=getter
+OS_MouseWheelEventArgs_Delta_0=cast=MouseWheelEventArgs^,flags=gcobject
+
+OS_Mouse_DirectlyOver=accessor=Mouse::DirectlyOver,flags=const gcobject
+
+OS_Mouse_GetPosition=accessor=Mouse::GetPosition,flags=gcobject
+OS_Mouse_GetPosition_0=cast=IInputElement^,flags=gcobject
+
+OS_Mouse_LeftButton=accessor=Mouse::LeftButton,flags=const
+
+OS_Mouse_MiddleButton=accessor=Mouse::MiddleButton,flags=const
+
+OS_Mouse_RightButton=accessor=Mouse::RightButton,flags=const
+
+OS_Mouse_SetCursor=accessor=Mouse::SetCursor
+OS_Mouse_SetCursor_0=cast=Cursor^,flags=gcobject
+
+OS_Mouse_XButton1=accessor=Mouse::XButton1,flags=const
+
+OS_Mouse_XButton2=accessor=Mouse::XButton2,flags=const
+
+OS_NewGlobalRef=flags=jni
+OS_NewGlobalRef_0=
+
+OS_Object_Equals=flags=cpp
+OS_Object_Equals_0=cast=Object ^,flags=gcobject
+OS_Object_Equals_1=cast=Object ^,flags=gcobject
+
+OS_Object_GetType=flags=cpp gcobject
+OS_Object_GetType_0=cast=(Object ^),flags=gcobject
+
+OS_Object_ToString=flags=cpp gcobject
+OS_Object_ToString_0=cast=(Object ^),flags=gcobject
+
+OS_OpenFileDialog_Multiselect=flags=setter
+OS_OpenFileDialog_Multiselect_0=cast=OpenFileDialog^,flags=gcobject
+OS_OpenFileDialog_Multiselect_1=
+
+OS_Panel_Background=flags=setter
+OS_Panel_Background_0=cast=Panel^,flags=gcobject
+OS_Panel_Background_1=cast=Brush^,flags=gcobject
+
+OS_Panel_BackgroundProperty=accessor=Panel::BackgroundProperty,flags=const gcobject
+
+OS_Panel_Children=flags=gcobject getter
+OS_Panel_Children_0=cast=(Panel^,flags=gcobject
+
+OS_Panel_GetZIndex=accessor=Panel::GetZIndex
+OS_Panel_GetZIndex_0=cast=UIElement^,flags=gcobject
+
+OS_Panel_SetZIndex=accessor=Panel::SetZIndex
+OS_Panel_SetZIndex_0=cast=UIElement ^,flags=gcobject
+OS_Panel_SetZIndex_1=
+
+OS_PasswordBox_1MaxLength__I=flags=getter
+OS_PasswordBox_1MaxLength__I_0=cast=(PasswordBox^),flags=gcobject
+
+OS_PasswordBox_1MaxLength__II=flags=setter
+OS_PasswordBox_1MaxLength__II_0=cast=(PasswordBox^),flags=gcobject
+OS_PasswordBox_1MaxLength__II_1=
+
+OS_PasswordBox_1Password__I=flags=gcobject getter
+OS_PasswordBox_1Password__I_0=cast=(PasswordBox^),flags=gcobject
+
+OS_PasswordBox_1Password__II=flags=setter
+OS_PasswordBox_1Password__II_0=cast=(PasswordBox^),flags=gcobject
+OS_PasswordBox_1Password__II_1=cast=String^,flags=gcobject
+
+OS_PasswordBox_PasswordChanged=flags=adder
+OS_PasswordBox_PasswordChanged_0=cast=(PasswordBox^),flags=gcobject
+OS_PasswordBox_PasswordChanged_1=cast=RoutedEventHandler^,flags=gcobject
+
+OS_PasswordBox_1PasswordChar__I=flags=getter
+OS_PasswordBox_1PasswordChar__I_0=cast=(PasswordBox^),flags=gcobject
+
+OS_PasswordBox_1PasswordChar__IC=flags=setter
+OS_PasswordBox_1PasswordChar__IC_0=cast=PasswordBox^,flags=gcobject
+OS_PasswordBox_1PasswordChar__IC_1=
+
+OS_PasswordBox_Paste=flags=cpp
+OS_PasswordBox_Paste_0=cast=(PasswordBox^),flags=gcobject
+
+OS_PathFigureCollection_Add=flags=cpp
+OS_PathFigureCollection_Add_0=cast=(PathFigureCollection^),flags=gcobject
+OS_PathFigureCollection_Add_1=cast=PathFigure^,flags=gcobject
+
+OS_PathFigureCollection_Count=flags=getter
+OS_PathFigureCollection_Count_0=cast=PathFigureCollection^,flags=gcobject
+
+OS_PathFigure_1IsClosed__I=flags=getter
+OS_PathFigure_1IsClosed__I_0=cast=PathFigure^,flags=gcobject
+
+OS_PathFigure_1IsClosed__IZ=flags=setter
+OS_PathFigure_1IsClosed__IZ_0=cast=PathFigure^,flags=gcobject
+OS_PathFigure_1IsClosed__IZ_1=
+
+OS_PathFigure_1Segments__I=flags=gcobject getter
+OS_PathFigure_1Segments__I_0=cast=PathFigure^,flags=gcobject
+
+OS_PathFigure_1Segments__II=flags=gcobject getter
+OS_PathFigure_1Segments__II_0=cast=PathFigure^,flags=gcobject
+OS_PathFigure_1Segments__II_1=
+
+OS_PathFigure_StartPoint=flags=setter
+OS_PathFigure_StartPoint_0=cast=PathFigure^,flags=gcobject
+OS_PathFigure_StartPoint_1=cast=Point,flags=gcobject
+
+OS_PathGeometry_AddGeometry=flags=cpp
+OS_PathGeometry_AddGeometry_0=cast=PathGeometry^,flags=gcobject
+OS_PathGeometry_AddGeometry_1=cast=Geometry^,flags=gcobject
+
+OS_PathGeometry_Bounds=flags=gcobject getter
+OS_PathGeometry_Bounds_0=cast=PathGeometry^,flags=gcobject
+
+OS_PathGeometry_1Figures__I=flags=gcobject getter
+OS_PathGeometry_1Figures__I_0=cast=PathGeometry^,flags=gcobject
+
+OS_PathGeometry_1Figures__II=flags=gcobject getter
+OS_PathGeometry_1Figures__II_0=cast=PathGeometry^,flags=gcobject
+OS_PathGeometry_1Figures__II_1=
+
+OS_PathGeometry_FillRule=flags=setter
+OS_PathGeometry_FillRule_0=cast=PathGeometry^,flags=gcobject
+OS_PathGeometry_FillRule_1=cast=FillRule
+
+OS_PathSegmentCollection_Add=flags=cpp
+OS_PathSegmentCollection_Add_0=cast=PathSegmentCollection^,flags=gcobject
+OS_PathSegmentCollection_Add_1=cast=PathSegment^,flags=gcobject
+
+OS_PathSegmentCollection_Count=flags=getter
+OS_PathSegmentCollection_Count_0=cast=PathSegmentCollection^,flags=gcobject
+
+OS_Path_Data=flags=setter
+OS_Path_Data_0=cast=Path^,flags=gcobject
+OS_Path_Data_1=cast=Geometry^,flags=gcobject
+
+OS_Path_Fill=flags=setter
+OS_Path_Fill_0=cast=Path^,flags=gcobject
+OS_Path_Fill_1=cast=(Brush^),flags=gcobject
+
+OS_Path_Stretch=flags=setter
+OS_Path_Stretch_0=cast=Path^,flags=gcobject
+OS_Path_Stretch_1=cast=Stretch
+
+OS_Pen_1Brush__I=flags=gcobject getter
+OS_Pen_1Brush__I_0=cast=(Pen^),flags=gcobject
+
+OS_Pen_1Brush__II=flags=setter
+OS_Pen_1Brush__II_0=cast=(Pen^),flags=gcobject
+OS_Pen_1Brush__II_1=cast=Brush^,flags=gcobject
+
+OS_Pen_DashCap=flags=setter
+OS_Pen_DashCap_0=cast=(Pen^),flags=gcobject
+OS_Pen_DashCap_1=cast=PenLineCap
+
+OS_Pen_DashStyle=flags=setter
+OS_Pen_DashStyle_0=cast=(Pen^),flags=gcobject
+OS_Pen_DashStyle_1=cast=DashStyle^,flags=gcobject
+
+OS_Pen_EndLineCap=flags=setter
+OS_Pen_EndLineCap_0=cast=(Pen^),flags=gcobject
+OS_Pen_EndLineCap_1=cast=(PenLineCap
+
+OS_Pen_LineJoin=flags=setter
+OS_Pen_LineJoin_0=cast=(Pen^),flags=gcobject
+OS_Pen_LineJoin_1=cast=(PenLineJoin)
+
+OS_Pen_StartLineCap=flags=setter
+OS_Pen_StartLineCap_0=cast=(Pen^),flags=gcobject
+OS_Pen_StartLineCap_1=cast=(PenLineCap)
+
+OS_Pen_Thickness=flags=setter
+OS_Pen_Thickness_0=cast=(Pen^),flags=gcobject
+OS_Pen_Thickness_1=
+
+OS_PixelFormat_BitsPerPixel=flags=getter
+OS_PixelFormat_BitsPerPixel_0=cast=(PixelFormat^),flags=gcobject
+
+OS_PixelFormats_Bgr101010=accessor=PixelFormats::Bgr101010,flags=const gcobject
+
+OS_PixelFormats_Bgr24=accessor=PixelFormats::Bgr24,flags=const gcobject
+
+OS_PixelFormats_Bgr32=accessor=PixelFormats::Bgr32,flags=const gcobject
+
+OS_PixelFormats_Bgr555=accessor=PixelFormats::Bgr555,flags=const gcobject
+
+OS_PixelFormats_Bgr565=accessor=PixelFormats::Bgr565,flags=const gcobject
+
+OS_PixelFormats_Bgra32=accessor=PixelFormats::Bgra32,flags=const gcobject
+
+OS_PixelFormats_BlackWhite=accessor=PixelFormats::BlackWhite,flags=const gcobject
+
+OS_PixelFormats_Default=accessor=PixelFormats::Default,flags=const gcobject
+
+OS_PixelFormats_Indexed1=accessor=PixelFormats::Indexed1,flags=const gcobject
+
+OS_PixelFormats_Indexed2=accessor=PixelFormats::Indexed2,flags=const gcobject
+
+OS_PixelFormats_Indexed4=accessor=PixelFormats::Indexed4,flags=const gcobject
+
+OS_PixelFormats_Indexed8=accessor=PixelFormats::Indexed8,flags=const gcobject
+
+OS_PixelFormats_Pbgra32=accessor=PixelFormats::Pbgra32,flags=const gcobject
+
+OS_PixelFormats_Rgb24=accessor=PixelFormats::Rgb24,flags=const gcobject
+
+OS_PointCollection_Add=flags=cpp
+OS_PointCollection_Add_0=cast=PointCollection^,flags=gcobject
+OS_PointCollection_Add_1=cast=Point,flags=gcobject
+
+OS_Point_X=flags=getter
+OS_Point_X_0=cast=Point^,flags=gcobject
+
+OS_Point_Y=flags=getter
+OS_Point_Y_0=cast=Point^,flags=gcobject
+
+OS_PresentationSource_FromVisual=accessor=PresentationSource::FromVisual,flags=gcobject
+OS_PresentationSource_FromVisual_0=cast=Visual^,flags=gcobject
+
+OS_ProgressBar_1IsIndeterminate__I=flags=getter
+OS_ProgressBar_1IsIndeterminate__I_0=cast=(ProgressBar ^),flags=gcobject
+
+OS_ProgressBar_1IsIndeterminate__IZ=flags=setter
+OS_ProgressBar_1IsIndeterminate__IZ_0=cast=(ProgressBar ^),flags=gcobject
+OS_ProgressBar_1IsIndeterminate__IZ_1=
+
+OS_ProgressBar_Orientation=flags=setter
+OS_ProgressBar_Orientation_0=cast=(ProgressBar ^),flags=gcobject
+OS_ProgressBar_Orientation_1=cast=(Orientation)
+
+OS_RangeBase_1LargeChange__I=flags=getter
+OS_RangeBase_1LargeChange__I_0=cast=RangeBase ^,flags=gcobject
+
+OS_RangeBase_1LargeChange__ID=flags=setter
+OS_RangeBase_1LargeChange__ID_0=cast=RangeBase ^,flags=gcobject
+OS_RangeBase_1LargeChange__ID_1=
+
+OS_RangeBase_1Maximum__I=flags=getter
+OS_RangeBase_1Maximum__I_0=cast=(RangeBase ^),flags=gcobject
+
+OS_RangeBase_1Maximum__ID=flags=setter
+OS_RangeBase_1Maximum__ID_0=cast=(RangeBase ^),flags=gcobject
+OS_RangeBase_1Maximum__ID_1=
+
+OS_RangeBase_1Minimum__I=flags=getter
+OS_RangeBase_1Minimum__I_0=cast=(RangeBase ^),flags=gcobject
+
+OS_RangeBase_1Minimum__ID=flags=setter
+OS_RangeBase_1Minimum__ID_0=cast=(RangeBase ^),flags=gcobject
+OS_RangeBase_1Minimum__ID_1=
+
+OS_RangeBase_1SmallChange__I=flags=getter
+OS_RangeBase_1SmallChange__I_0=cast=RangeBase ^,flags=gcobject
+
+OS_RangeBase_1SmallChange__ID=flags=setter
+OS_RangeBase_1SmallChange__ID_0=cast=RangeBase ^,flags=gcobject
+OS_RangeBase_1SmallChange__ID_1=
+
+OS_RangeBase_1Value__I=flags=getter
+OS_RangeBase_1Value__I_0=cast=(RangeBase ^),flags=gcobject
+
+OS_RangeBase_1Value__ID=flags=setter
+OS_RangeBase_1Value__ID_0=cast=(RangeBase ^),flags=gcobject
+OS_RangeBase_1Value__ID_1=
+
+OS_RangeBase_ValueChanged=flags=adder
+OS_RangeBase_ValueChanged_0=cast=(RangeBase ^),flags=gcobject
+OS_RangeBase_ValueChanged_1=cast=(RoutedPropertyChangedEventHandler<double> ^),flags=gcobject
+
+OS_Rect_1Height__I=flags=getter
+OS_Rect_1Height__I_0=cast=(Rect^),flags=gcobject
+
+OS_Rect_1Height__ID=flags=setter
+OS_Rect_1Height__ID_0=cast=(Rect^),flags=gcobject
+OS_Rect_1Height__ID_1=
+
+OS_Rect_Intersect=flags=cpp
+OS_Rect_Intersect_0=cast=(Rect^),flags=gcobject
+OS_Rect_Intersect_1=cast=Rect,flags=gcobject
+
+OS_Rect_Union=flags=cpp
+OS_Rect_Union_0=cast=(Rect^),flags=gcobject
+OS_Rect_Union_1=cast=(Rect),flags=gcobject
+
+OS_Rect_1Width__I=flags=getter
+OS_Rect_1Width__I_0=cast=(Rect^),flags=gcobject
+
+OS_Rect_1Width__ID=flags=setter
+OS_Rect_1Width__ID_0=cast=(Rect^),flags=gcobject
+OS_Rect_1Width__ID_1=
+
+OS_Rect_1X__I=flags=getter
+OS_Rect_1X__I_0=cast=(Rect^),flags=gcobject
+
+OS_Rect_1X__ID=flags=setter
+OS_Rect_1X__ID_0=cast=(Rect^),flags=gcobject
+OS_Rect_1X__ID_1=
+
+OS_Rect_1Y__I=flags=getter
+OS_Rect_1Y__I_0=cast=(Rect^),flags=gcobject
+
+OS_Rect_1Y__ID=flags=setter
+OS_Rect_1Y__ID_0=cast=(Rect^),flags=gcobject
+OS_Rect_1Y__ID_1=
+
+OS_RegistryKey_GetSubKeyNames=flags=cpp gcobject
+OS_RegistryKey_GetSubKeyNames_0=cast=RegistryKey^,flags=gcobject
+
+OS_RegistryKey_GetValue=flags=cpp gcobject
+OS_RegistryKey_GetValue_0=cast=RegistryKey^,flags=gcobject
+OS_RegistryKey_GetValue_1=cast=String^,flags=gcobject
+
+OS_RegistryKey_OpenSubKey=flags=cpp gcobject
+OS_RegistryKey_OpenSubKey_0=cast=RegistryKey^,flags=gcobject
+OS_RegistryKey_OpenSubKey_1=cast=String^,flags=gcobject
+
+OS_Registry_ClassesRoot=accessor=Registry::ClassesRoot,flags=const gcobject
+
+OS_RenderOptions_GetBitmapScalingMode=accessor=RenderOptions::GetBitmapScalingMode
+OS_RenderOptions_GetBitmapScalingMode_0=cast=(DependencyObject^),flags=gcobject
+
+OS_RenderOptions_SetBitmapScalingMode=accessor=RenderOptions::SetBitmapScalingMode
+OS_RenderOptions_SetBitmapScalingMode_0=cast=(DependencyObject^),flags=gcobject
+OS_RenderOptions_SetBitmapScalingMode_1=cast=(BitmapScalingMode)
+
+OS_RenderOptions_SetEdgeMode=accessor=RenderOptions::SetEdgeMode
+OS_RenderOptions_SetEdgeMode_0=cast=(DependencyObject^),flags=gcobject
+OS_RenderOptions_SetEdgeMode_1=cast=(EdgeMode)
+
+OS_RenderTargetBitmap_Render=flags=cpp
+OS_RenderTargetBitmap_Render_0=cast=RenderTargetBitmap^,flags=gcobject
+OS_RenderTargetBitmap_Render_1=cast=Visual^,flags=gcobject
+
+OS_RepeatBehavior_Forever=accessor=RepeatBehavior::Forever,flags=const gcobject
+
+OS_RoutedEventArgs_Handled=flags=setter
+OS_RoutedEventArgs_Handled_0=cast=RoutedEventArgs^,flags=gcobject
+OS_RoutedEventArgs_Handled_1=
+
+OS_RoutedEventArgs_OriginalSource=flags=gcobject getter
+OS_RoutedEventArgs_OriginalSource_0=cast=(RoutedEventArgs^),flags=gcobject
+
+OS_RoutedEventArgs_Source=flags=gcobject getter
+OS_RoutedEventArgs_Source_0=cast=(RoutedEventArgs^),flags=gcobject
+
+OS_RoutedEventArgs_typeid=accessor=RoutedEventArgs::typeid,flags=const gcobject
+
+OS_RowDefinitionCollection_Add=flags=cpp
+OS_RowDefinitionCollection_Add_0=cast=(RowDefinitionCollection^),flags=gcobject
+OS_RowDefinitionCollection_Add_1=cast=RowDefinition^,flags=gcobject
+
+OS_RowDefinition_Height=flags=setter
+OS_RowDefinition_Height_0=cast=RowDefinition^,flags=gcobject
+OS_RowDefinition_Height_1=cast=(GridLength),flags=gcobject
+
+OS_Run_Text=flags=setter
+OS_Run_Text_0=cast=Run^,flags=gcobject
+OS_Run_Text_1=cast=String^,flags=gcobject
+
+OS_SWTCanvas_1Visual__I=flags=getter no_gen gcobject
+OS_SWTCanvas_1Visual__I_0=cast=(SWTCanvas^),flags=gcobject
+
+OS_SWTCanvas_1Visual__II=flags=no_gen setter
+OS_SWTCanvas_1Visual__II_0=cast=SWTCanvas^,flags=gcobject
+OS_SWTCanvas_1Visual__II_1=cast=DrawingVisual^,flags=gcobject
+
+OS_SWTTextRunProperties_ForegroundBrush=flags=no_gen setter
+OS_SWTTextRunProperties_ForegroundBrush_0=cast=SWTTextRunProperties^,flags=gcobject
+OS_SWTTextRunProperties_ForegroundBrush_1=cast=Brush^,flags=gcobject
+
+OS_ScrollBar_1Orientation__I=flags=getter
+OS_ScrollBar_1Orientation__I_0=cast=(ScrollBar^),flags=gcobject
+
+OS_ScrollBar_1Orientation__II=flags=setter
+OS_ScrollBar_1Orientation__II_0=cast=(ScrollBar^),flags=gcobject
+OS_ScrollBar_1Orientation__II_1=cast=Orientation
+
+OS_ScrollBar_Scroll=flags=adder
+OS_ScrollBar_Scroll_0=cast=(ScrollBar^),flags=gcobject
+OS_ScrollBar_Scroll_1=cast=(ScrollEventHandler^),flags=gcobject
+
+OS_ScrollBar_1ViewportSize__I=flags=getter
+OS_ScrollBar_1ViewportSize__I_0=cast=(ScrollBar^),flags=gcobject
+
+OS_ScrollBar_1ViewportSize__ID=flags=setter
+OS_ScrollBar_1ViewportSize__ID_0=cast=(ScrollBar^),flags=gcobject
+OS_ScrollBar_1ViewportSize__ID_1=
+
+OS_ScrollBar_typeid=accessor=ScrollBar::typeid,flags=const gcobject
+
+OS_ScrollEventArgs_ScrollEventType=flags=getter
+OS_ScrollEventArgs_ScrollEventType_0=cast=ScrollEventArgs^,flags=gcobject
+
+OS_ScrollViewer_typeid=accessor=ScrollViewer::typeid,flags=const gcobject
+
+OS_SelectionChangedEventArgs_AddedItems=flags=gcobject getter
+OS_SelectionChangedEventArgs_AddedItems_0=cast=SelectionChangedEventArgs^,flags=gcobject
+
+OS_SelectionChangedEventArgs_RemovedItems=flags=gcobject getter
+OS_SelectionChangedEventArgs_RemovedItems_0=cast=(SelectionChangedEventArgs^),flags=gcobject
+
+OS_Selector_IsSynchronizedWithCurrentItem=flags=setter
+OS_Selector_IsSynchronizedWithCurrentItem_0=cast=Selector^,flags=gcobject
+OS_Selector_IsSynchronizedWithCurrentItem_1=
+
+OS_Selector_1SelectedIndex__I=flags=getter
+OS_Selector_1SelectedIndex__I_0=cast=(Selector^),flags=gcobject
+
+OS_Selector_1SelectedIndex__II=flags=setter
+OS_Selector_1SelectedIndex__II_0=cast=(Selector^),flags=gcobject
+OS_Selector_1SelectedIndex__II_1=
+
+OS_Selector_SelectedItem=flags=gcobject getter
+OS_Selector_SelectedItem_0=cast=(Selector^),flags=gcobject
+
+OS_Selector_SelectedValue=flags=gcobject getter
+OS_Selector_SelectedValue_0=cast=(Selector^),flags=gcobject
+
+OS_Selector_SelectionChanged=flags=adder
+OS_Selector_SelectionChanged_0=cast=Selector^,flags=gcobject
+OS_Selector_SelectionChanged_1=cast=(SelectionChangedEventHandler^),flags=gcobject
+
+OS_SetCursorPos=
+OS_SetCursorPos_0=
+OS_SetCursorPos_1=
+
+OS_SetterBaseCollection_Add=flags=cpp
+OS_SetterBaseCollection_Add_0=cast=SetterBaseCollection^,flags=gcobject
+OS_SetterBaseCollection_Add_1=cast=SetterBase^,flags=gcobject
+
+OS_Shape_Fill=flags=setter
+OS_Shape_Fill_0=cast=Shape^,flags=gcobject
+OS_Shape_Fill_1=cast=Brush^,flags=gcobject
+
+OS_Shape_Stroke=flags=setter
+OS_Shape_Stroke_0=cast=(Shape^),flags=gcobject
+OS_Shape_Stroke_1=cast=Brush^,flags=gcobject
+
+OS_Shape_StrokeThickness=flags=setter
+OS_Shape_StrokeThickness_0=cast=(Shape^),flags=gcobject
+OS_Shape_StrokeThickness_1=
+
+OS_Size_1Height__I=flags=getter
+OS_Size_1Height__I_0=cast=Size ^,flags=gcobject
+
+OS_Size_1Height__ID=flags=setter
+OS_Size_1Height__ID_0=cast=Size ^,flags=gcobject
+OS_Size_1Height__ID_1=
+
+OS_Size_1Width__I=flags=getter
+OS_Size_1Width__I_0=cast=Size ^,flags=gcobject
+
+OS_Size_1Width__ID=flags=setter
+OS_Size_1Width__ID_0=cast=Size ^,flags=gcobject
+OS_Size_1Width__ID_1=
+
+OS_Slider_Orientation=flags=setter
+OS_Slider_Orientation_0=cast=(Slider ^),flags=gcobject
+OS_Slider_Orientation_1=cast=Orientation
+
+OS_Slider_TickFrequency=flags=setter
+OS_Slider_TickFrequency_0=cast=Slider^,flags=gcobject
+OS_Slider_TickFrequency_1=
+
+OS_Slider_TickPlacement=flags=setter
+OS_Slider_TickPlacement_0=cast=Slider^,flags=gcobject
+OS_Slider_TickPlacement_1=cast=TickPlacement
+
+OS_StackPanel_Orientation=flags=setter
+OS_StackPanel_Orientation_0=cast=StackPanel^,flags=gcobject
+OS_StackPanel_Orientation_1=cast=Orientation
+
+OS_StackPanel_OrientationProperty=accessor=StackPanel::OrientationProperty,flags=const gcobject
+
+OS_StackPanel_typeid=accessor=StackPanel::typeid,flags=const gcobject
+
+OS_StreamGeometryContext_BeginFigure=flags=cpp
+OS_StreamGeometryContext_BeginFigure_0=cast=(StreamGeometryContext^),flags=gcobject
+OS_StreamGeometryContext_BeginFigure_1=cast=(Point),flags=gcobject
+OS_StreamGeometryContext_BeginFigure_2=
+OS_StreamGeometryContext_BeginFigure_3=
+
+OS_StreamGeometryContext_Close=flags=cpp
+OS_StreamGeometryContext_Close_0=cast=StreamGeometryContext^,flags=gcobject
+
+OS_StreamGeometryContext_LineTo=flags=cpp
+OS_StreamGeometryContext_LineTo_0=cast=(StreamGeometryContext^),flags=gcobject
+OS_StreamGeometryContext_LineTo_1=cast=(Point),flags=gcobject
+OS_StreamGeometryContext_LineTo_2=
+OS_StreamGeometryContext_LineTo_3=
+
+OS_StreamGeometry_Open=flags=cpp gcobject
+OS_StreamGeometry_Open_0=cast=StreamGeometry^,flags=gcobject
+
+OS_String_Length=flags=getter
+OS_String_Length_0=cast=String^,flags=gcobject
+
+OS_String_ToCharArray=flags=cpp gcobject
+OS_String_ToCharArray_0=cast=String^,flags=gcobject
+
+OS_Style_Setters=flags=gcobject getter
+OS_Style_Setters_0=cast=Style^,flags=gcobject
+
+OS_SystemColors_ActiveBorderColor=accessor=SystemColors::ActiveBorderColor,flags=const struct gcobject
+
+OS_SystemColors_ActiveCaptionColor=accessor=SystemColors::ActiveCaptionColor,flags=const struct gcobject
+
+OS_SystemColors_ActiveCaptionTextColor=accessor=SystemColors::ActiveCaptionTextColor,flags=const struct gcobject
+
+OS_SystemColors_ControlBrush=accessor=SystemColors::ControlBrush,flags=const gcobject
+
+OS_SystemColors_ControlColor=accessor=SystemColors::ControlColor,flags=const struct gcobject
+
+OS_SystemColors_ControlDarkColor=accessor=SystemColors::ControlDarkColor,flags=const struct gcobject
+
+OS_SystemColors_ControlDarkDarkColor=accessor=SystemColors::ControlDarkDarkColor,flags=const struct gcobject
+
+OS_SystemColors_ControlLightColor=accessor=SystemColors::ControlLightColor,flags=const struct gcobject
+
+OS_SystemColors_ControlTextBrush=accessor=SystemColors::ControlTextBrush,flags=const gcobject
+
+OS_SystemColors_ControlTextColor=accessor=SystemColors::ControlTextColor,flags=const struct gcobject
+
+OS_SystemColors_GradientActiveCaptionColor=accessor=SystemColors::GradientActiveCaptionColor,flags=const struct gcobject
+
+OS_SystemColors_GradientInactiveCaptionColor=accessor=SystemColors::GradientInactiveCaptionColor,flags=const struct gcobject
+
+OS_SystemColors_HighlightBrush=accessor=SystemColors::HighlightBrush,flags=const gcobject
+
+OS_SystemColors_HighlightColor=accessor=SystemColors::HighlightColor,flags=const struct gcobject
+
+OS_SystemColors_HighlightTextColor=accessor=SystemColors::HighlightTextColor,flags=const struct gcobject
+
+OS_SystemColors_InactiveCaptionColor=accessor=SystemColors::InactiveCaptionColor,flags=const struct gcobject
+
+OS_SystemColors_InactiveCaptionTextColor=accessor=SystemColors::InactiveCaptionTextColor,flags=const struct gcobject
+
+OS_SystemColors_InfoColor=accessor=SystemColors::InfoColor,flags=const struct gcobject
+
+OS_SystemColors_InfoTextColor=accessor=SystemColors::InfoTextColor,flags=const struct gcobject
+
+OS_SystemColors_WindowColor=accessor=SystemColors::WindowColor,flags=const struct gcobject
+
+OS_SystemColors_WindowTextColor=accessor=SystemColors::WindowTextColor,flags=const struct gcobject
+
+OS_SystemFonts_MessageFontFamily=accessor=SystemFonts::MessageFontFamily,flags=const gcobject
+
+OS_SystemFonts_MessageFontSize=accessor=SystemFonts::MessageFontSize,flags=const
+
+OS_SystemFonts_MessageFontStyle=accessor=SystemFonts::MessageFontStyle,flags=const gcobject
+
+OS_SystemFonts_MessageFontWeight=accessor=SystemFonts::MessageFontWeight,flags=const gcobject
+
+OS_SystemParameters_HighContrast=accessor=SystemParameters::HighContrast,flags=const
+
+OS_SystemParameters_HorizontalScrollBarButtonWidth=accessor=SystemParameters::HorizontalScrollBarButtonWidth,flags=const
+
+OS_SystemParameters_HorizontalScrollBarHeight=accessor=SystemParameters::HorizontalScrollBarHeight,flags=const
+
+OS_SystemParameters_PrimaryScreenHeight=accessor=SystemParameters::PrimaryScreenHeight,flags=const
+
+OS_SystemParameters_PrimaryScreenWidth=accessor=SystemParameters::PrimaryScreenWidth,flags=const
+
+OS_SystemParameters_VerticalScrollBarButtonHeight=accessor=SystemParameters::VerticalScrollBarButtonHeight,flags=const
+
+OS_SystemParameters_VerticalScrollBarWidth=accessor=SystemParameters::VerticalScrollBarWidth,flags=const
+
+OS_SystemParameters_VirtualScreenHeight=accessor=SystemParameters::VirtualScreenHeight,flags=const
+
+OS_SystemParameters_VirtualScreenLeft=accessor=SystemParameters::VirtualScreenLeft,flags=const
+
+OS_SystemParameters_VirtualScreenTop=accessor=SystemParameters::VirtualScreenTop,flags=const
+
+OS_SystemParameters_VirtualScreenWidth=accessor=SystemParameters::VirtualScreenWidth,flags=const
+
+OS_SystemParameters_WheelScrollLines=accessor=SystemParameters::WheelScrollLines,flags=const
+
+OS_SystemParameters_WorkArea=accessor=SystemParameters::WorkArea,flags=const gcobject
+
+OS_TabControl_TabStripPlacement=flags=setter
+OS_TabControl_TabStripPlacement_0=cast=TabControl^,flags=gcobject
+OS_TabControl_TabStripPlacement_1=cast=Dock
+
+OS_TabItem_IsSelected=flags=getter
+OS_TabItem_IsSelected_0=cast=TabItem^,flags=gcobject
+
+OS_TextBlock_Background=flags=setter
+OS_TextBlock_Background_0=cast=TextBlock^,flags=gcobject
+OS_TextBlock_Background_1=cast=Brush^,flags=gcobject
+
+OS_TextBlock_BackgroundProperty=accessor=TextBlock::BackgroundProperty,flags=const gcobject
+
+OS_TextBlock_FontFamily=flags=setter
+OS_TextBlock_FontFamily_0=cast=(TextBlock^),flags=gcobject
+OS_TextBlock_FontFamily_1=cast=FontFamily^,flags=gcobject
+
+OS_TextBlock_FontFamilyProperty=accessor=TextBlock::FontFamilyProperty,flags=const gcobject
+
+OS_TextBlock_FontSize=flags=setter
+OS_TextBlock_FontSize_0=cast=(TextBlock^),flags=gcobject
+OS_TextBlock_FontSize_1=
+
+OS_TextBlock_FontSizeProperty=accessor=TextBlock::FontSizeProperty,flags=const gcobject
+
+OS_TextBlock_FontStretch=flags=setter
+OS_TextBlock_FontStretch_0=cast=(TextBlock^),flags=gcobject
+OS_TextBlock_FontStretch_1=cast=FontStretch,flags=gcobject
+
+OS_TextBlock_FontStretchProperty=accessor=TextBlock::FontStretchProperty,flags=const gcobject
+
+OS_TextBlock_FontStyle=flags=setter
+OS_TextBlock_FontStyle_0=cast=(TextBlock^),flags=gcobject
+OS_TextBlock_FontStyle_1=cast=FontStyle,flags=gcobject
+
+OS_TextBlock_FontStyleProperty=accessor=TextBlock::FontStyleProperty,flags=const gcobject
+
+OS_TextBlock_FontWeight=flags=setter
+OS_TextBlock_FontWeight_0=cast=(TextBlock^),flags=gcobject
+OS_TextBlock_FontWeight_1=cast=FontWeight,flags=gcobject
+
+OS_TextBlock_FontWeightProperty=accessor=TextBlock::FontWeightProperty,flags=const gcobject
+
+OS_TextBlock_Foreground=flags=setter
+OS_TextBlock_Foreground_0=cast=TextBlock^,flags=gcobject
+OS_TextBlock_Foreground_1=cast=Brush^,flags=gcobject
+
+OS_TextBlock_ForegroundProperty=accessor=TextBlock::ForegroundProperty,flags=const gcobject
+
+OS_TextBlock_Inlines=flags=gcobject getter
+OS_TextBlock_Inlines_0=cast=TextBlock^,flags=gcobject
+
+OS_TextBlock_Text=flags=setter
+OS_TextBlock_Text_0=cast=TextBlock^,flags=gcobject
+OS_TextBlock_Text_1=cast=String^,flags=gcobject
+
+OS_TextBlock_TextProperty=accessor=TextBlock::TextProperty,flags=const gcobject
+
+OS_TextBlock_typeid=accessor=TextBlock::typeid,flags=const gcobject
+
+OS_TextBoundsCollection_Current=flags=gcobject getter
+OS_TextBoundsCollection_Current_0=cast=IEnumerator^,flags=gcobject
+
+OS_TextBoundsCollection_GetEnumerator=flags=cpp gcobject
+OS_TextBoundsCollection_GetEnumerator_0=cast=IEnumerable^,flags=gcobject
+
+OS_TextBounds_Rectangle=flags=gcobject getter
+OS_TextBounds_Rectangle_0=cast=TextBounds^,flags=gcobject
+
+OS_TextBoxBase_AcceptsReturn=flags=setter
+OS_TextBoxBase_AcceptsReturn_0=cast=TextBoxBase^,flags=gcobject
+OS_TextBoxBase_AcceptsReturn_1=
+
+OS_TextBoxBase_AcceptsTab=flags=setter
+OS_TextBoxBase_AcceptsTab_0=cast=TextBoxBase^,flags=gcobject
+OS_TextBoxBase_AcceptsTab_1=
+
+OS_TextBoxBase_AppendText=flags=cpp
+OS_TextBoxBase_AppendText_0=cast=TextBoxBase^,flags=gcobject
+OS_TextBoxBase_AppendText_1=cast=(String^),flags=gcobject
+
+OS_TextBoxBase_Copy=flags=cpp
+OS_TextBoxBase_Copy_0=cast=TextBoxBase^,flags=gcobject
+
+OS_TextBoxBase_Cut=flags=cpp
+OS_TextBoxBase_Cut_0=cast=TextBoxBase^,flags=gcobject
+
+OS_TextBoxBase_HorizontalScrollBarVisibility=flags=setter
+OS_TextBoxBase_HorizontalScrollBarVisibility_0=cast=TextBoxBase^,flags=gcobject
+OS_TextBoxBase_HorizontalScrollBarVisibility_1=cast=(ScrollBarVisibility)
+
+OS_TextBoxBase_1IsReadOnly__I=flags=getter
+OS_TextBoxBase_1IsReadOnly__I_0=cast=TextBoxBase^,flags=gcobject
+
+OS_TextBoxBase_1IsReadOnly__IZ=flags=setter
+OS_TextBoxBase_1IsReadOnly__IZ_0=cast=TextBoxBase^,flags=gcobject
+OS_TextBoxBase_1IsReadOnly__IZ_1=
+
+OS_TextBoxBase_Paste=flags=cpp
+OS_TextBoxBase_Paste_0=cast=TextBoxBase^,flags=gcobject
+
+OS_TextBoxBase_ScrollToEnd=flags=cpp
+OS_TextBoxBase_ScrollToEnd_0=cast=TextBoxBase^,flags=gcobject
+
+OS_TextBoxBase_ScrollToVerticalOffset=flags=cpp
+OS_TextBoxBase_ScrollToVerticalOffset_0=cast=TextBoxBase^,flags=gcobject
+OS_TextBoxBase_ScrollToVerticalOffset_1=
+
+OS_TextBoxBase_SelectAll=flags=cpp
+OS_TextBoxBase_SelectAll_0=cast=TextBoxBase^,flags=gcobject
+
+OS_TextBoxBase_TextChanged=flags=adder
+OS_TextBoxBase_TextChanged_0=cast=TextBoxBase^,flags=gcobject
+OS_TextBoxBase_TextChanged_1=cast=TextChangedEventHandler^,flags=gcobject
+
+OS_TextBoxBase_VerticalOffset=flags=getter
+OS_TextBoxBase_VerticalOffset_0=cast=TextBoxBase^,flags=gcobject
+
+OS_TextBoxBase_VerticalScrollBarVisibility=flags=setter
+OS_TextBoxBase_VerticalScrollBarVisibility_0=cast=TextBoxBase^,flags=gcobject
+OS_TextBoxBase_VerticalScrollBarVisibility_1=cast=(ScrollBarVisibility)
+
+OS_TextBox_1CaretIndex__I=flags=getter
+OS_TextBox_1CaretIndex__I_0=cast=TextBox^,flags=gcobject
+
+OS_TextBox_1CaretIndex__II=flags=setter
+OS_TextBox_1CaretIndex__II_0=cast=TextBox^,flags=gcobject
+OS_TextBox_1CaretIndex__II_1=
+
+OS_TextBox_GetFirstVisibleLineIndex=flags=cpp
+OS_TextBox_GetFirstVisibleLineIndex_0=cast=TextBox^,flags=gcobject
+
+OS_TextBox_GetLineIndexFromCharacterIndex=flags=cpp
+OS_TextBox_GetLineIndexFromCharacterIndex_0=cast=TextBox^,flags=gcobject
+OS_TextBox_GetLineIndexFromCharacterIndex_1=
+
+OS_TextBox_GetRectFromCharacterIndex=flags=cpp gcobject
+OS_TextBox_GetRectFromCharacterIndex_0=cast=TextBox^,flags=gcobject
+OS_TextBox_GetRectFromCharacterIndex_1=
+
+OS_TextBox_LineCount=flags=getter
+OS_TextBox_LineCount_0=cast=TextBox^,flags=gcobject
+
+OS_TextBox_1MaxLength__I=flags=getter
+OS_TextBox_1MaxLength__I_0=cast=TextBox^,flags=gcobject
+
+OS_TextBox_1MaxLength__II=flags=setter
+OS_TextBox_1MaxLength__II_0=cast=TextBox^,flags=gcobject
+OS_TextBox_1MaxLength__II_1=
+
+OS_TextBox_ScrollToLine=flags=cpp
+OS_TextBox_ScrollToLine_0=cast=TextBox^,flags=gcobject
+OS_TextBox_ScrollToLine_1=
+
+OS_TextBox_Select=flags=cpp
+OS_TextBox_Select_0=cast=TextBox^,flags=gcobject
+OS_TextBox_Select_1=
+OS_TextBox_Select_2=
+
+OS_TextBox_1SelectedText__I=flags=gcobject getter
+OS_TextBox_1SelectedText__I_0=cast=TextBox^,flags=gcobject
+
+OS_TextBox_1SelectedText__II=flags=setter
+OS_TextBox_1SelectedText__II_0=cast=TextBox^,flags=gcobject
+OS_TextBox_1SelectedText__II_1=cast=String^,flags=gcobject
+
+OS_TextBox_1SelectionLength__I=flags=getter
+OS_TextBox_1SelectionLength__I_0=cast=TextBox^,flags=gcobject
+
+OS_TextBox_1SelectionLength__II=flags=setter
+OS_TextBox_1SelectionLength__II_0=cast=TextBox^,flags=gcobject
+OS_TextBox_1SelectionLength__II_1=
+
+OS_TextBox_1SelectionStart__I=flags=getter
+OS_TextBox_1SelectionStart__I_0=cast=TextBox^,flags=gcobject
+
+OS_TextBox_1SelectionStart__II=flags=setter
+OS_TextBox_1SelectionStart__II_0=cast=TextBox^,flags=gcobject
+OS_TextBox_1SelectionStart__II_1=
+
+OS_TextBox_1Text__I=flags=gcobject getter
+OS_TextBox_1Text__I_0=cast=(TextBox^),flags=gcobject
+
+OS_TextBox_1Text__II=flags=setter
+OS_TextBox_1Text__II_0=cast=(TextBox^),flags=gcobject
+OS_TextBox_1Text__II_1=cast=String^,flags=gcobject
+
+OS_TextBox_TextWrapping=flags=setter
+OS_TextBox_TextWrapping_0=cast=TextBox^,flags=gcobject
+OS_TextBox_TextWrapping_1=cast=TextWrapping
+
+OS_TextCompositionEventArgs_ControlText=flags=gcobject getter
+OS_TextCompositionEventArgs_ControlText_0=cast=(TextCompositionEventArgs^),flags=gcobject
+
+OS_TextCompositionEventArgs_Handled=flags=setter
+OS_TextCompositionEventArgs_Handled_0=cast=TextCompositionEventArgs^,flags=gcobject
+OS_TextCompositionEventArgs_Handled_1=
+
+OS_TextCompositionEventArgs_SystemText=flags=gcobject getter
+OS_TextCompositionEventArgs_SystemText_0=cast=(TextCompositionEventArgs^),flags=gcobject
+
+OS_TextCompositionEventArgs_Text=flags=gcobject getter
+OS_TextCompositionEventArgs_Text_0=cast=(TextCompositionEventArgs^),flags=gcobject
+
+OS_TextDecorationCollection_Add=flags=cpp
+OS_TextDecorationCollection_Add_0=cast=(TextDecorationCollection^),flags=gcobject
+OS_TextDecorationCollection_Add_1=cast=(TextDecorationCollection^),flags=gcobject
+
+OS_TextDecorations_Strikethrough=accessor=TextDecorations::Strikethrough,flags=const gcobject
+
+OS_TextDecorations_Underline=accessor=TextDecorations::Underline,flags=const gcobject
+
+OS_TextFormatter_Create=accessor=TextFormatter::Create,flags=gcobject
+
+OS_TextFormatter_FormatLine=flags=cpp gcobject
+OS_TextFormatter_FormatLine_0=cast=TextFormatter^,flags=gcobject
+OS_TextFormatter_FormatLine_1=cast=TextSource^,flags=gcobject
+OS_TextFormatter_FormatLine_2=
+OS_TextFormatter_FormatLine_3=
+OS_TextFormatter_FormatLine_4=cast=TextParagraphProperties^,flags=gcobject
+OS_TextFormatter_FormatLine_5=cast=TextLineBreak^,flags=gcobject
+
+OS_TextLine_Baseline=flags=getter
+OS_TextLine_Baseline_0=cast=TextLine^,flags=gcobject
+
+OS_TextLine_Draw=flags=cpp
+OS_TextLine_Draw_0=cast=TextLine^,flags=gcobject
+OS_TextLine_Draw_1=cast=(DrawingContext^),flags=gcobject
+OS_TextLine_Draw_2=cast=Point,flags=gcobject
+OS_TextLine_Draw_3=cast=InvertAxes
+
+OS_TextLine_GetCharacterHitFromDistance=flags=cpp gcobject
+OS_TextLine_GetCharacterHitFromDistance_0=cast=TextLine^,flags=gcobject
+OS_TextLine_GetCharacterHitFromDistance_1=
+
+OS_TextLine_GetDistanceFromCharacterHit=flags=cpp
+OS_TextLine_GetDistanceFromCharacterHit_0=cast=(TextLine^),flags=gcobject
+OS_TextLine_GetDistanceFromCharacterHit_1=cast=(CharacterHit),flags=gcobject
+
+OS_TextLine_GetIndexedGlyphRuns=flags=cpp gcobject
+OS_TextLine_GetIndexedGlyphRuns_0=cast=(TextLine^),flags=gcobject
+
+OS_TextLine_GetNextCaretCharacterHit=flags=cpp gcobject
+OS_TextLine_GetNextCaretCharacterHit_0=cast=(TextLine^),flags=gcobject
+OS_TextLine_GetNextCaretCharacterHit_1=cast=(CharacterHit),flags=gcobject
+
+OS_TextLine_GetPreviousCaretCharacterHit=flags=cpp gcobject
+OS_TextLine_GetPreviousCaretCharacterHit_0=cast=(TextLine^),flags=gcobject
+OS_TextLine_GetPreviousCaretCharacterHit_1=cast=(CharacterHit),flags=gcobject
+
+OS_TextLine_GetTextBounds=flags=cpp gcobject
+OS_TextLine_GetTextBounds_0=cast=TextLine^,flags=gcobject
+OS_TextLine_GetTextBounds_1=
+OS_TextLine_GetTextBounds_2=
+
+OS_TextLine_GetTextLineBreak=flags=cpp gcobject
+OS_TextLine_GetTextLineBreak_0=cast=TextLine^,flags=gcobject
+
+OS_TextLine_Height=flags=getter
+OS_TextLine_Height_0=cast=TextLine^,flags=gcobject
+
+OS_TextLine_Length=flags=getter
+OS_TextLine_Length_0=cast=TextLine^,flags=gcobject
+
+OS_TextLine_NewlineLength=flags=getter
+OS_TextLine_NewlineLength_0=cast=TextLine^,flags=gcobject
+
+OS_TextLine_Start=flags=getter
+OS_TextLine_Start_0=cast=(TextLine^),flags=gcobject
+
+OS_TextLine_Width=flags=getter
+OS_TextLine_Width_0=cast=(TextLine^),flags=gcobject
+
+OS_TextLine_WidthIncludingTrailingWhitespace=flags=getter
+OS_TextLine_WidthIncludingTrailingWhitespace_0=cast=TextLine^,flags=gcobject
+
+OS_TextTabPropertiesCollection_Add=flags=cpp
+OS_TextTabPropertiesCollection_Add_0=cast=System::Collections::Generic::IList<TextTabProperties^>^,flags=gcobject
+OS_TextTabPropertiesCollection_Add_1=cast=TextTabProperties^,flags=gcobject
+
+OS_TileBrush_AlignmentX=flags=setter
+OS_TileBrush_AlignmentX_0=cast=(TileBrush^),flags=gcobject
+OS_TileBrush_AlignmentX_1=cast=AlignmentX
+
+OS_TileBrush_AlignmentY=flags=setter
+OS_TileBrush_AlignmentY_0=cast=(TileBrush^),flags=gcobject
+OS_TileBrush_AlignmentY_1=cast=AlignmentY
+
+OS_TileBrush_Stretch=flags=setter
+OS_TileBrush_Stretch_0=cast=(TileBrush^),flags=gcobject
+OS_TileBrush_Stretch_1=cast=(Stretch)
+
+OS_TileBrush_TileMode=flags=setter
+OS_TileBrush_TileMode_0=cast=(TileBrush^),flags=gcobject
+OS_TileBrush_TileMode_1=cast=(TileMode)
+
+OS_TileBrush_Viewport=flags=setter
+OS_TileBrush_Viewport_0=cast=TileBrush^,flags=gcobject
+OS_TileBrush_Viewport_1=cast=Rect,flags=gcobject
+
+OS_TileBrush_ViewportUnits=flags=setter
+OS_TileBrush_ViewportUnits_0=cast=(TileBrush^),flags=gcobject
+OS_TileBrush_ViewportUnits_1=cast=BrushMappingMode
+
+OS_TimeSpan_FromMilliseconds=accessor=TimeSpan::FromMilliseconds(arg0),flags=const gcobject
+OS_TimeSpan_FromMilliseconds_0=
+
+OS_Timeline_AutoReverse=flags=setter
+OS_Timeline_AutoReverse_0=cast=Timeline^,flags=gcobject
+OS_Timeline_AutoReverse_1=
+
+OS_Timeline_Duration=flags=setter
+OS_Timeline_Duration_0=cast=Timeline^,flags=gcobject
+OS_Timeline_Duration_1=cast=(Duration),flags=gcobject
+
+OS_Timeline_RepeatBehavior=flags=setter
+OS_Timeline_RepeatBehavior_0=cast=Timeline^,flags=gcobject
+OS_Timeline_RepeatBehavior_1=cast=(RepeatBehavior),flags=gcobject
+
+OS_ToUnicode=
+OS_ToUnicode_0=
+OS_ToUnicode_1=
+OS_ToUnicode_2=cast=(PBYTE)
+OS_ToUnicode_3=cast=(LPWSTR)
+OS_ToUnicode_4=
+OS_ToUnicode_5=
+
+OS_ToggleButton_Checked=flags=adder
+OS_ToggleButton_Checked_0=cast=ToggleButton^,flags=gcobject
+OS_ToggleButton_Checked_1=cast=RoutedEventHandler^,flags=gcobject
+
+OS_ToggleButton_CheckedEvent=accessor=ToggleButton::CheckedEvent,flags=const gcobject
+
+OS_ToggleButton_IndeterminateEvent=accessor=ToggleButton::IndeterminateEvent,flags=const gcobject
+
+OS_ToggleButton_1IsChecked__I=flags=getter
+OS_ToggleButton_1IsChecked__I_0=cast=(ToggleButton ^),flags=gcobject
+
+OS_ToggleButton_1IsChecked__IZ=flags=setter
+OS_ToggleButton_1IsChecked__IZ_0=cast=(ToggleButton ^),flags=gcobject
+OS_ToggleButton_1IsChecked__IZ_1=
+
+OS_ToggleButton_IsCheckedNullSetter=flags=no_gen setter
+OS_ToggleButton_IsCheckedNullSetter_0=cast=ToggleButton^,flags=gcobject
+
+OS_ToggleButton_IsThreeStateProperty=accessor=ToggleButton::IsThreeStateProperty,flags=const gcobject
+
+OS_ToggleButton_Unchecked=flags=adder
+OS_ToggleButton_Unchecked_0=cast=ToggleButton^,flags=gcobject
+OS_ToggleButton_Unchecked_1=cast=RoutedEventHandler^,flags=gcobject
+
+OS_ToggleButton_UncheckedEvent=accessor=ToggleButton::UncheckedEvent,flags=const gcobject
+
+OS_ToolBarTray_IsLocked=flags=setter
+OS_ToolBarTray_IsLocked_0=cast=ToolBarTray^,flags=gcobject
+OS_ToolBarTray_IsLocked_1=
+
+OS_ToolBarTray_Orientation=flags=setter
+OS_ToolBarTray_Orientation_0=cast=ToolBarTray^,flags=gcobject
+OS_ToolBarTray_Orientation_1=cast=(Orientation)
+
+OS_ToolBarTray_ToolBars=flags=gcobject getter
+OS_ToolBarTray_ToolBars_0=cast=ToolBarTray^,flags=gcobject
+
+OS_ToolBar_SetOverflowMode=accessor=ToolBar::SetOverflowMode
+OS_ToolBar_SetOverflowMode_0=cast=DependencyObject^,flags=gcobject
+OS_ToolBar_SetOverflowMode_1=cast=OverflowMode
+
+OS_TransformCollection_Add=flags=cpp
+OS_TransformCollection_Add_0=cast=(TransformCollection^),flags=gcobject
+OS_TransformCollection_Add_1=cast=Transform^,flags=gcobject
+
+OS_TransformGroup_Children=flags=gcobject getter
+OS_TransformGroup_Children_0=cast=TransformGroup^,flags=gcobject
+
+OS_Transform_Clone=flags=cpp gcobject
+OS_Transform_Clone_0=cast=Transform^,flags=gcobject
+
+OS_TreeViewItem_CollapsedEvent=accessor=TreeViewItem::CollapsedEvent,flags=const gcobject
+
+OS_TreeViewItem_ExpandedEvent=accessor=TreeViewItem::ExpandedEvent,flags=const gcobject
+
+OS_TreeViewItem_1IsExpanded__I=flags=getter
+OS_TreeViewItem_1IsExpanded__I_0=cast=TreeViewItem^,flags=gcobject
+
+OS_TreeViewItem_1IsExpanded__IZ=flags=setter
+OS_TreeViewItem_1IsExpanded__IZ_0=cast=TreeViewItem^,flags=gcobject
+OS_TreeViewItem_1IsExpanded__IZ_1=
+
+OS_TreeViewItem_IsSelected=flags=setter
+OS_TreeViewItem_IsSelected_0=cast=TreeViewItem^,flags=gcobject
+OS_TreeViewItem_IsSelected_1=
+
+OS_TreeView_SelectedItem=flags=gcobject getter
+OS_TreeView_SelectedItem_0=cast=(TreeView^),flags=gcobject
+
+OS_TreeView_SelectedItemChanged=flags=adder
+OS_TreeView_SelectedItemChanged_0=cast=TreeView^,flags=gcobject
+OS_TreeView_SelectedItemChanged_1=cast=(RoutedPropertyChangedEventHandler<Object^>^),flags=gcobject
+
+OS_TreeView_typeid=accessor=TreeView::typeid,flags=const gcobject
+
+OS_TypeConverter_ConvertFromString=flags=cpp gcobject
+OS_TypeConverter_ConvertFromString_0=cast=(TypeConverter^),flags=gcobject
+OS_TypeConverter_ConvertFromString_1=cast=String^,flags=gcobject
+
+OS_TypeConverter_ConvertToString=flags=cpp gcobject
+OS_TypeConverter_ConvertToString_0=cast=(TypeConverter^),flags=gcobject
+OS_TypeConverter_ConvertToString_1=cast=Object^,flags=gcobject
+
+OS_TypeDescriptor_GetConverter=accessor=TypeDescriptor::GetConverter,flags=gcobject
+OS_TypeDescriptor_GetConverter_0=cast=Object^,flags=gcobject
+
+OS_Type_FullName=flags=struct gcobject getter
+OS_Type_FullName_0=cast=Type^,flags=gcobject
+
+OS_Type_IsInstanceOfType=flags=cpp
+OS_Type_IsInstanceOfType_0=cast=Type^,flags=gcobject
+OS_Type_IsInstanceOfType_1=cast=Object^,flags=gcobject
+
+OS_TypefaceCollection_Count=flags=getter
+OS_TypefaceCollection_Count_0=cast=(System::Collections::Generic::ICollection<Typeface^>^),flags=gcobject
+
+OS_TypefaceCollection_Current=flags=gcobject getter
+OS_TypefaceCollection_Current_0=cast=(System::Collections::Generic::IEnumerator<Typeface^>^),flags=gcobject
+
+OS_TypefaceCollection_GetEnumerator=flags=cpp gcobject
+OS_TypefaceCollection_GetEnumerator_0=cast=(System::Collections::Generic::IEnumerable<Typeface^>^),flags=gcobject
+
+OS_Typeface_FontFamily=flags=struct gcobject getter
+OS_Typeface_FontFamily_0=cast=(Typeface^),flags=gcobject
+
+OS_Typeface_Stretch=flags=struct gcobject getter
+OS_Typeface_Stretch_0=cast=(Typeface^),flags=gcobject
+
+OS_Typeface_Style=flags=struct gcobject getter
+OS_Typeface_Style_0=cast=(Typeface^),flags=gcobject
+
+OS_Typeface_Weight=flags=struct gcobject getter
+OS_Typeface_Weight_0=cast=(Typeface^),flags=gcobject
+
+OS_UIElementCollection_Add=flags=cpp
+OS_UIElementCollection_Add_0=cast=(UIElementCollection^),flags=gcobject
+OS_UIElementCollection_Add_1=cast=(UIElement^),flags=gcobject
+
+OS_UIElementCollection_Contains=flags=cpp
+OS_UIElementCollection_Contains_0=cast=(UIElementCollection^),flags=gcobject
+OS_UIElementCollection_Contains_1=cast=(UIElement^),flags=gcobject
+
+OS_UIElementCollection_Count=flags=getter
+OS_UIElementCollection_Count_0=cast=(UIElementCollection^),flags=gcobject
+
+OS_UIElementCollection_Current=flags=gcobject getter
+OS_UIElementCollection_Current_0=cast=(IEnumerator^),flags=gcobject
+
+OS_UIElementCollection_GetEnumerator=flags=cpp gcobject
+OS_UIElementCollection_GetEnumerator_0=cast=(IEnumerable^),flags=gcobject
+
+OS_UIElementCollection_IndexOf=flags=cpp
+OS_UIElementCollection_IndexOf_0=cast=UIElementCollection^,flags=gcobject
+OS_UIElementCollection_IndexOf_1=cast=UIElement^,flags=gcobject
+
+OS_UIElementCollection_Insert=flags=cpp
+OS_UIElementCollection_Insert_0=cast=(UIElementCollection^),flags=gcobject
+OS_UIElementCollection_Insert_1=
+OS_UIElementCollection_Insert_2=cast=UIElement^,flags=gcobject
+
+OS_UIElementCollection_Remove=flags=cpp
+OS_UIElementCollection_Remove_0=cast=(UIElementCollection^),flags=gcobject
+OS_UIElementCollection_Remove_1=cast=(UIElement^),flags=gcobject
+
+OS_UIElement_AddHandler=flags=cpp
+OS_UIElement_AddHandler_0=cast=UIElement^,flags=gcobject
+OS_UIElement_AddHandler_1=cast=RoutedEvent^,flags=gcobject
+OS_UIElement_AddHandler_2=cast=Delegate^,flags=gcobject
+
+OS_UIElement_BeginAnimation=flags=cpp
+OS_UIElement_BeginAnimation_0=cast=(UIElement^),flags=gcobject
+OS_UIElement_BeginAnimation_1=cast=DependencyProperty^,flags=gcobject
+OS_UIElement_BeginAnimation_2=cast=AnimationTimeline^,flags=gcobject
+
+OS_UIElement_CaptureMouse=flags=cpp
+OS_UIElement_CaptureMouse_0=cast=UIElement^,flags=gcobject
+
+OS_UIElement_Clip=flags=setter
+OS_UIElement_Clip_0=cast=UIElement^,flags=gcobject
+OS_UIElement_Clip_1=cast=Geometry^,flags=gcobject
+
+OS_UIElement_ClipToBounds=flags=setter
+OS_UIElement_ClipToBounds_0=cast=UIElement^,flags=gcobject
+OS_UIElement_ClipToBounds_1=
+
+OS_UIElement_DesiredSize=flags=struct gcobject getter
+OS_UIElement_DesiredSize_0=cast=UIElement^,flags=gcobject
+
+OS_UIElement_Focus=flags=cpp
+OS_UIElement_Focus_0=cast=(UIElement^),flags=gcobject
+
+OS_UIElement_Focusable=flags=setter
+OS_UIElement_Focusable_0=cast=(UIElement^),flags=gcobject
+OS_UIElement_Focusable_1=
+
+OS_UIElement_InputHitTest=flags=cpp gcobject
+OS_UIElement_InputHitTest_0=cast=UIElement^,flags=gcobject
+OS_UIElement_InputHitTest_1=cast=Point,flags=gcobject
+
+OS_UIElement_InvalidateVisual=flags=cpp
+OS_UIElement_InvalidateVisual_0=cast=(UIElement^),flags=gcobject
+
+OS_UIElement_1IsEnabled__I=flags=getter
+OS_UIElement_1IsEnabled__I_0=cast=(UIElement^),flags=gcobject
+
+OS_UIElement_1IsEnabled__IZ=flags=setter
+OS_UIElement_1IsEnabled__IZ_0=cast=UIElement^,flags=gcobject
+OS_UIElement_1IsEnabled__IZ_1=
+
+OS_UIElement_IsFocused=flags=getter
+OS_UIElement_IsFocused_0=cast=(UIElement^),flags=gcobject
+
+OS_UIElement_IsKeyboardFocused=flags=getter
+OS_UIElement_IsKeyboardFocused_0=cast=(UIElement^),flags=gcobject
+
+OS_UIElement_IsMouseOver=flags=getter
+OS_UIElement_IsMouseOver_0=cast=UIElement^,flags=gcobject
+
+OS_UIElement_IsVisible=flags=getter
+OS_UIElement_IsVisible_0=cast=UIElement^,flags=gcobject
+
+OS_UIElement_KeyDown=flags=adder
+OS_UIElement_KeyDown_0=cast=(UIElement^),flags=gcobject
+OS_UIElement_KeyDown_1=cast=(KeyEventHandler^),flags=gcobject
+
+OS_UIElement_KeyUp=flags=adder
+OS_UIElement_KeyUp_0=cast=UIElement^,flags=gcobject
+OS_UIElement_KeyUp_1=cast=KeyEventHandler^,flags=gcobject
+
+OS_UIElement_Measure=flags=cpp
+OS_UIElement_Measure_0=cast=(UIElement ^),flags=gcobject
+OS_UIElement_Measure_1=cast=(Size),flags=gcobject
+
+OS_UIElement_MouseDown=flags=adder
+OS_UIElement_MouseDown_0=cast=(UIElement^),flags=gcobject
+OS_UIElement_MouseDown_1=cast=(MouseButtonEventHandler^),flags=gcobject
+
+OS_UIElement_MouseEnter=flags=adder
+OS_UIElement_MouseEnter_0=cast=UIElement^,flags=gcobject
+OS_UIElement_MouseEnter_1=cast=MouseEventHandler^,flags=gcobject
+
+OS_UIElement_MouseLeave=flags=adder
+OS_UIElement_MouseLeave_0=cast=UIElement^,flags=gcobject
+OS_UIElement_MouseLeave_1=cast=MouseEventHandler^,flags=gcobject
+
+OS_UIElement_MouseMove=flags=adder
+OS_UIElement_MouseMove_0=cast=(UIElement^),flags=gcobject
+OS_UIElement_MouseMove_1=cast=(MouseEventHandler^),flags=gcobject
+
+OS_UIElement_MouseUp=flags=adder
+OS_UIElement_MouseUp_0=cast=(UIElement^),flags=gcobject
+OS_UIElement_MouseUp_1=cast=(MouseButtonEventHandler^),flags=gcobject
+
+OS_UIElement_MouseWheel=flags=adder
+OS_UIElement_MouseWheel_0=cast=(UIElement^),flags=gcobject
+OS_UIElement_MouseWheel_1=cast=(MouseWheelEventHandler^),flags=gcobject
+
+OS_UIElement_OpacityProperty=accessor=UIElement::OpacityProperty,flags=const gcobject
+
+OS_UIElement_PreviewGotKeyboardFocus=flags=adder
+OS_UIElement_PreviewGotKeyboardFocus_0=cast=(UIElement^),flags=gcobject
+OS_UIElement_PreviewGotKeyboardFocus_1=cast=(KeyboardFocusChangedEventHandler^),flags=gcobject
+
+OS_UIElement_PreviewLostKeyboardFocus=flags=adder
+OS_UIElement_PreviewLostKeyboardFocus_0=cast=(UIElement^),flags=gcobject
+OS_UIElement_PreviewLostKeyboardFocus_1=cast=(KeyboardFocusChangedEventHandler^),flags=gcobject
+
+OS_UIElement_PreviewMouseDown=flags=adder
+OS_UIElement_PreviewMouseDown_0=cast=(UIElement ^),flags=gcobject
+OS_UIElement_PreviewMouseDown_1=cast=(MouseButtonEventHandler^),flags=gcobject
+
+OS_UIElement_PreviewMouseMove=flags=adder
+OS_UIElement_PreviewMouseMove_0=cast=(UIElement ^),flags=gcobject
+OS_UIElement_PreviewMouseMove_1=cast=(MouseEventHandler^),flags=gcobject
+
+OS_UIElement_PreviewMouseUp=flags=adder
+OS_UIElement_PreviewMouseUp_0=cast=(UIElement ^),flags=gcobject
+OS_UIElement_PreviewMouseUp_1=cast=(MouseButtonEventHandler^),flags=gcobject
+
+OS_UIElement_PreviewMouseWheel=flags=adder
+OS_UIElement_PreviewMouseWheel_0=cast=(UIElement ^),flags=gcobject
+OS_UIElement_PreviewMouseWheel_1=cast=(MouseWheelEventHandler^),flags=gcobject
+
+OS_UIElement_PreviewTextInput=flags=adder
+OS_UIElement_PreviewTextInput_0=cast=UIElement^,flags=gcobject
+OS_UIElement_PreviewTextInput_1=cast=TextCompositionEventHandler^,flags=gcobject
+
+OS_UIElement_ReleaseMouseCapture=flags=cpp
+OS_UIElement_ReleaseMouseCapture_0=cast=UIElement^,flags=gcobject
+
+OS_UIElement_TextInput=flags=adder
+OS_UIElement_TextInput_0=cast=(UIElement^),flags=gcobject
+OS_UIElement_TextInput_1=cast=TextCompositionEventHandler^,flags=gcobject
+
+OS_UIElement_TranslatePoint=flags=struct cpp gcobject
+OS_UIElement_TranslatePoint_0=cast=(UIElement^),flags=gcobject
+OS_UIElement_TranslatePoint_1=cast=Point,flags=gcobject
+OS_UIElement_TranslatePoint_2=cast=(UIElement^),flags=gcobject
+
+OS_UIElement_UpdateLayout=flags=cpp
+OS_UIElement_UpdateLayout_0=cast=UIElement^,flags=gcobject
+
+OS_UIElement_1Visibility__I=flags=getter
+OS_UIElement_1Visibility__I_0=cast=(UIElement^),flags=gcobject
+
+OS_UIElement_1Visibility__IB=flags=setter
+OS_UIElement_1Visibility__IB_0=cast=(UIElement^),flags=gcobject
+OS_UIElement_1Visibility__IB_1=cast=Visibility
+
+OS_UIElement_VisibilityProperty=accessor=UIElement::VisibilityProperty,flags=const gcobject
+
+OS_VirtualizingStackPanel_VerticalOffset=flags=getter
+OS_VirtualizingStackPanel_VerticalOffset_0=cast=VirtualizingStackPanel^,flags=gcobject
+
+OS_VisualTreeHelper_GetChild=accessor=VisualTreeHelper::GetChild,flags=gcobject
+OS_VisualTreeHelper_GetChild_0=cast=DependencyObject^,flags=gcobject
+OS_VisualTreeHelper_GetChild_1=
+
+OS_VisualTreeHelper_GetChildrenCount=accessor=VisualTreeHelper::GetChildrenCount
+OS_VisualTreeHelper_GetChildrenCount_0=cast=DependencyObject^,flags=gcobject
+
+OS_VisualTreeHelper_GetParent=accessor=VisualTreeHelper::GetParent,flags=gcobject
+OS_VisualTreeHelper_GetParent_0=cast=DependencyObject^,flags=gcobject
+
+OS_Visual_PointFromScreen=flags=struct cpp gcobject
+OS_Visual_PointFromScreen_0=cast=(Visual^),flags=gcobject
+OS_Visual_PointFromScreen_1=cast=(Point),flags=gcobject
+
+OS_Visual_PointToScreen=flags=struct cpp gcobject
+OS_Visual_PointToScreen_0=cast=Visual^,flags=gcobject
+OS_Visual_PointToScreen_1=cast=(Point),flags=gcobject
+
+OS_WindowCollection_Count=flags=getter
+OS_WindowCollection_Count_0=cast=(WindowCollection^),flags=gcobject
+
+OS_WindowCollection_Current=flags=gcobject getter
+OS_WindowCollection_Current_0=cast=IEnumerator^,flags=gcobject
+
+OS_WindowCollection_GetEnumerator=flags=cpp gcobject
+OS_WindowCollection_GetEnumerator_0=cast=IEnumerable^,flags=gcobject
+
+OS_Window_Activate=flags=cpp
+OS_Window_Activate_0=cast=(Window^),flags=gcobject
+
+OS_Window_Activated=flags=adder
+OS_Window_Activated_0=cast=(Window^),flags=gcobject
+OS_Window_Activated_1=cast=EventHandler^,flags=gcobject
+
+OS_Window_AllowsTransparency=flags=setter
+OS_Window_AllowsTransparency_0=cast=(Window^),flags=gcobject
+OS_Window_AllowsTransparency_1=
+
+OS_Window_Close=flags=cpp
+OS_Window_Close_0=cast=(Window^),flags=gcobject
+
+OS_Window_Closing=flags=adder
+OS_Window_Closing_0=cast=(Window^),flags=gcobject
+OS_Window_Closing_1=cast=CancelEventHandler^,flags=gcobject
+
+OS_Window_Deactivated=flags=adder
+OS_Window_Deactivated_0=cast=(Window^),flags=gcobject
+OS_Window_Deactivated_1=cast=EventHandler^,flags=gcobject
+
+OS_Window_Hide=flags=cpp
+OS_Window_Hide_0=cast=(Window^),flags=gcobject
+
+OS_Window_Icon=flags=setter
+OS_Window_Icon_0=cast=(Window^),flags=gcobject
+OS_Window_Icon_1=cast=ImageSource^,flags=gcobject
+
+OS_Window_IsActive=flags=getter
+OS_Window_IsActive_0=cast=(Window^),flags=gcobject
+
+OS_Window_1Left__I=flags=getter
+OS_Window_1Left__I_0=cast=Window^,flags=gcobject
+
+OS_Window_1Left__ID=flags=setter
+OS_Window_1Left__ID_0=cast=Window^,flags=gcobject
+OS_Window_1Left__ID_1=
+
+OS_Window_LocationChanged=flags=adder
+OS_Window_LocationChanged_0=cast=Window^,flags=gcobject
+OS_Window_LocationChanged_1=cast=EventHandler^,flags=gcobject
+
+OS_Window_Owner=flags=setter
+OS_Window_Owner_0=cast=(Window^),flags=gcobject
+OS_Window_Owner_1=cast=(Window^),flags=gcobject
+
+OS_Window_ResizeMode=flags=setter
+OS_Window_ResizeMode_0=cast=(Window^),flags=gcobject
+OS_Window_ResizeMode_1=cast=ResizeMode
+
+OS_Window_Show=flags=cpp
+OS_Window_Show_0=cast=(Window^),flags=gcobject
+
+OS_Window_ShowInTaskbar=flags=setter
+OS_Window_ShowInTaskbar_0=cast=(Window^),flags=gcobject
+OS_Window_ShowInTaskbar_1=
+
+OS_Window_1Title__I=flags=gcobject getter
+OS_Window_1Title__I_0=cast=(Window^),flags=gcobject
+
+OS_Window_1Title__II=flags=setter
+OS_Window_1Title__II_0=cast=(Window^),flags=gcobject
+OS_Window_1Title__II_1=cast=String^,flags=gcobject
+
+OS_Window_1Top__I=flags=getter
+OS_Window_1Top__I_0=cast=Window ^,flags=gcobject
+
+OS_Window_1Top__ID=flags=setter
+OS_Window_1Top__ID_0=cast=Window ^,flags=gcobject
+OS_Window_1Top__ID_1=
+
+OS_Window_Topmost=flags=setter
+OS_Window_Topmost_0=cast=Window^,flags=gcobject
+OS_Window_Topmost_1=
+
+OS_Window_1WindowState__I=flags=getter
+OS_Window_1WindowState__I_0=cast=(Window^),flags=gcobject
+
+OS_Window_1WindowState__II=flags=setter
+OS_Window_1WindowState__II_0=cast=(Window^),flags=gcobject
+OS_Window_1WindowState__II_1=cast=WindowState
+
+OS_Window_WindowStyle=flags=setter
+OS_Window_WindowStyle_0=cast=(Window^),flags=gcobject
+OS_Window_WindowStyle_1=cast=WindowStyle
+
+OS_WriteableBitmap_WritePixels=flags=cpp
+OS_WriteableBitmap_WritePixels_0=cast=WriteableBitmap^,flags=gcobject
+OS_WriteableBitmap_WritePixels_1=cast=Int32Rect,flags=gcobject
+OS_WriteableBitmap_WritePixels_2=cast=IntPtr
+OS_WriteableBitmap_WritePixels_3=
+OS_WriteableBitmap_WritePixels_4=
+
+OS_gcnew_AccessText=flags=gcnew
+
+OS_gcnew_Application=flags=gcnew
+
+OS_gcnew_ArcSegment=flags=gcnew
+OS_gcnew_ArcSegment_0=cast=Point,flags=gcobject
+OS_gcnew_ArcSegment_1=cast=Size,flags=gcobject
+OS_gcnew_ArcSegment_2=
+OS_gcnew_ArcSegment_3=
+OS_gcnew_ArcSegment_4=cast=(SweepDirection)
+OS_gcnew_ArcSegment_5=
+
+OS_gcnew_BezierSegment=flags=gcnew
+OS_gcnew_BezierSegment_0=cast=Point,flags=gcobject
+OS_gcnew_BezierSegment_1=cast=Point,flags=gcobject
+OS_gcnew_BezierSegment_2=cast=Point,flags=gcobject
+OS_gcnew_BezierSegment_3=
+
+OS_gcnew_1Binding__=flags=gcnew
+
+OS_gcnew_1Binding__I=flags=gcnew
+OS_gcnew_1Binding__I_0=cast=String^,flags=gcobject
+
+OS_gcnew_Bitmap=accessor=System::Drawing::Bitmap,flags=gcnew
+OS_gcnew_Bitmap_0=
+OS_gcnew_Bitmap_1=
+OS_gcnew_Bitmap_2=
+OS_gcnew_Bitmap_3=cast=(System::Drawing::Imaging::PixelFormat)
+OS_gcnew_Bitmap_4=cast=IntPtr
+
+OS_gcnew_BitmapImage=flags=gcnew
+
+OS_gcnew_BitmapPalette=flags=gcnew
+OS_gcnew_BitmapPalette_0=cast=(System::Collections::Generic::IList<Color>^),flags=gcobject
+
+OS_gcnew_Button=flags=gcnew
+
+OS_gcnew_CancelEventHandler=flags=no_gen
+OS_gcnew_CancelEventHandler_0=
+OS_gcnew_CancelEventHandler_1=
+
+OS_gcnew_Canvas=flags=gcnew
+
+OS_gcnew_CharacterHit=flags=gcnew
+OS_gcnew_CharacterHit_0=
+OS_gcnew_CharacterHit_1=
+
+OS_gcnew_CheckBox=flags=gcnew
+
+OS_gcnew_ColorDialog=accessor=System::Windows::Forms::ColorDialog,flags=gcnew
+
+OS_gcnew_ColorList=accessor=System::Collections::Generic::List<Color>,flags=gcnew
+OS_gcnew_ColorList_0=
+
+OS_gcnew_ColumnDefinition=flags=gcnew
+
+OS_gcnew_CombinedGeometry=flags=gcnew
+OS_gcnew_CombinedGeometry_0=cast=(GeometryCombineMode)
+OS_gcnew_CombinedGeometry_1=cast=(Geometry^),flags=gcobject
+OS_gcnew_CombinedGeometry_2=cast=(Geometry^),flags=gcobject
+
+OS_gcnew_ComboBox=flags=gcnew
+
+OS_gcnew_ComboBoxItem=flags=gcnew
+
+OS_gcnew_CompositeCollection=flags=gcnew
+
+OS_gcnew_ContentControl=flags=gcnew
+
+OS_gcnew_ContextMenu=flags=gcnew
+
+OS_gcnew_ContextMenuEventHandler=flags=gcnew no_gen
+OS_gcnew_ContextMenuEventHandler_0=
+OS_gcnew_ContextMenuEventHandler_1=
+
+OS_gcnew_ControlTemplate=flags=gcnew
+
+OS_gcnew_CroppedBitmap=flags=gcnew
+OS_gcnew_CroppedBitmap_0=cast=BitmapSource^,flags=gcobject
+OS_gcnew_CroppedBitmap_1=cast=Int32Rect,flags=gcobject
+
+OS_gcnew_DashStyle=flags=gcnew
+OS_gcnew_DashStyle_0=cast=(DoubleCollection^),flags=gcobject
+OS_gcnew_DashStyle_1=
+
+OS_gcnew_DataTemplate=flags=gcnew
+
+OS_gcnew_DiscreteDoubleKeyFrame=flags=gcnew
+OS_gcnew_DiscreteDoubleKeyFrame_0=
+OS_gcnew_DiscreteDoubleKeyFrame_1=cast=(KeyTime),flags=gcobject
+
+OS_gcnew_DispatcherFrame=flags=gcnew
+
+OS_gcnew_DispatcherHookEventHandler=flags=no_gen
+OS_gcnew_DispatcherHookEventHandler_0=
+OS_gcnew_DispatcherHookEventHandler_1=
+
+OS_gcnew_DispatcherTimer=flags=gcnew
+
+OS_gcnew_DoubleAnimationUsingKeyFrames=flags=gcnew
+
+OS_gcnew_DoubleCollection=flags=gcnew
+OS_gcnew_DoubleCollection_0=
+
+OS_gcnew_DrawingVisual=flags=gcnew
+
+OS_gcnew_Duration=flags=gcnew
+OS_gcnew_Duration_0=cast=(TimeSpan),flags=gcobject
+
+OS_gcnew_EventHandler=flags=no_gen
+OS_gcnew_EventHandler_0=
+OS_gcnew_EventHandler_1=
+
+OS_gcnew_ExecutedRoutedEventHandler=flags=no_gen
+OS_gcnew_ExecutedRoutedEventHandler_0=
+OS_gcnew_ExecutedRoutedEventHandler_1=
+
+OS_gcnew_Expander=flags=gcnew
+
+OS_gcnew_FileInfo=accessor=System::IO::FileInfo,flags=gcnew
+OS_gcnew_FileInfo_0=cast=String^,flags=gcobject
+
+OS_gcnew_FontFamily=flags=gcnew
+OS_gcnew_FontFamily_0=cast=String^,flags=gcobject
+
+OS_gcnew_FormatConvertedBitmap=flags=gcnew
+OS_gcnew_FormatConvertedBitmap_0=cast=BitmapSource^,flags=gcobject
+OS_gcnew_FormatConvertedBitmap_1=cast=PixelFormat,flags=gcobject
+OS_gcnew_FormatConvertedBitmap_2=cast=BitmapPalette^,flags=gcobject
+OS_gcnew_FormatConvertedBitmap_3=
+
+OS_gcnew_FormattedText=flags=gcnew
+OS_gcnew_FormattedText_0=cast=String^,flags=gcobject
+OS_gcnew_FormattedText_1=cast=CultureInfo^,flags=gcobject
+OS_gcnew_FormattedText_2=cast=FlowDirection
+OS_gcnew_FormattedText_3=cast=Typeface^,flags=gcobject
+OS_gcnew_FormattedText_4=
+OS_gcnew_FormattedText_5=cast=Brush^,flags=gcobject
+
+OS_gcnew_1FrameworkElementFactory__I=flags=gcnew
+OS_gcnew_1FrameworkElementFactory__I_0=cast=Type^,flags=gcobject
+
+OS_gcnew_1FrameworkElementFactory__II=flags=gcnew
+OS_gcnew_1FrameworkElementFactory__II_0=cast=Type^,flags=gcobject
+OS_gcnew_1FrameworkElementFactory__II_1=cast=String^,flags=gcobject
+
+OS_gcnew_GeometryGroup=flags=gcnew
+
+OS_gcnew_Grid=flags=gcnew
+
+OS_gcnew_GridLength=flags=gcnew
+OS_gcnew_GridLength_0=
+OS_gcnew_GridLength_1=cast=GridUnitType
+
+OS_gcnew_GridView=flags=gcnew
+
+OS_gcnew_GridViewColumn=flags=gcnew
+
+OS_gcnew_GridViewColumnCollection=flags=gcnew
+
+OS_gcnew_GridViewColumnHeader=flags=gcnew
+
+OS_gcnew_GroupBox=flags=gcnew
+
+OS_gcnew_Hyperlink=flags=gcnew
+OS_gcnew_Hyperlink_0=cast=Inline^,flags=gcobject
+
+OS_gcnew_Image=flags=gcnew
+
+OS_gcnew_ImageBrush=flags=gcnew
+OS_gcnew_ImageBrush_0=cast=ImageSource^,flags=gcobject
+
+OS_gcnew_Int32=flags=gcnew
+OS_gcnew_Int32_0=
+
+OS_gcnew_Int32Rect=flags=gcnew
+OS_gcnew_Int32Rect_0=
+OS_gcnew_Int32Rect_1=
+OS_gcnew_Int32Rect_2=
+OS_gcnew_Int32Rect_3=
+
+OS_gcnew_IntPtr=flags=gcnew
+OS_gcnew_IntPtr_0=
+
+OS_gcnew_KeyEventHandler=flags=no_gen
+OS_gcnew_KeyEventHandler_0=
+OS_gcnew_KeyEventHandler_1=
+
+OS_gcnew_KeyboardFocusChangedEventHandler=flags=no_gen
+OS_gcnew_KeyboardFocusChangedEventHandler_0=
+OS_gcnew_KeyboardFocusChangedEventHandler_1=
+
+OS_gcnew_Label=flags=gcnew
+
+OS_gcnew_LineSegment=flags=gcnew
+OS_gcnew_LineSegment_0=cast=Point,flags=gcobject
+OS_gcnew_LineSegment_1=
+
+OS_gcnew_1LinearGradientBrush__IID=flags=gcnew
+OS_gcnew_1LinearGradientBrush__IID_0=cast=Color,flags=gcobject
+OS_gcnew_1LinearGradientBrush__IID_1=cast=Color,flags=gcobject
+OS_gcnew_1LinearGradientBrush__IID_2=
+
+OS_gcnew_1LinearGradientBrush__IIII=flags=gcnew
+OS_gcnew_1LinearGradientBrush__IIII_0=cast=Color,flags=gcobject
+OS_gcnew_1LinearGradientBrush__IIII_1=cast=Color,flags=gcobject
+OS_gcnew_1LinearGradientBrush__IIII_2=cast=Point,flags=gcobject
+OS_gcnew_1LinearGradientBrush__IIII_3=cast=Point,flags=gcobject
+
+OS_gcnew_ListBox=flags=gcnew
+
+OS_gcnew_ListBoxItem=flags=gcnew
+
+OS_gcnew_ListView=flags=gcnew
+
+OS_gcnew_ListViewItem=flags=gcnew
+
+OS_gcnew_Matrix=flags=gcnew
+OS_gcnew_Matrix_0=
+OS_gcnew_Matrix_1=
+OS_gcnew_Matrix_2=
+OS_gcnew_Matrix_3=
+OS_gcnew_Matrix_4=
+OS_gcnew_Matrix_5=
+
+OS_gcnew_MatrixTransform=flags=gcnew
+OS_gcnew_MatrixTransform_0=cast=(Matrix),flags=gcobject
+
+OS_gcnew_Menu=flags=gcnew
+
+OS_gcnew_MenuItem=flags=gcnew
+
+OS_gcnew_MouseButtonEventHandler=flags=no_gen
+OS_gcnew_MouseButtonEventHandler_0=
+OS_gcnew_MouseButtonEventHandler_1=
+
+OS_gcnew_MouseEventHandler=flags=no_gen
+OS_gcnew_MouseEventHandler_0=
+OS_gcnew_MouseEventHandler_1=
+
+OS_gcnew_MouseWheelEventHandler=flags=no_gen
+OS_gcnew_MouseWheelEventHandler_0=
+OS_gcnew_MouseWheelEventHandler_1=
+
+OS_gcnew_NoArgsDelegate=flags=no_gen
+
+OS_gcnew_OpenFileDialog=flags=gcnew
+
+OS_gcnew_PasswordBox=flags=gcnew
+
+OS_gcnew_Path=flags=gcnew
+
+OS_gcnew_PathFigure=flags=gcnew
+
+OS_gcnew_PathGeometry=flags=gcnew
+
+OS_gcnew_Pen=flags=gcnew
+
+OS_gcnew_Point=flags=gcnew
+OS_gcnew_Point_0=
+OS_gcnew_Point_1=
+
+OS_gcnew_PointCollection=flags=gcnew
+OS_gcnew_PointCollection_0=
+
+OS_gcnew_PolyLineSegment=flags=gcnew
+OS_gcnew_PolyLineSegment_0=cast=PointCollection^,flags=gcobject
+OS_gcnew_PolyLineSegment_1=
+
+OS_gcnew_ProgressBar=flags=gcnew
+
+OS_gcnew_QuadraticBezierSegment=flags=gcnew
+OS_gcnew_QuadraticBezierSegment_0=cast=Point,flags=gcobject
+OS_gcnew_QuadraticBezierSegment_1=cast=Point,flags=gcobject
+OS_gcnew_QuadraticBezierSegment_2=
+
+OS_gcnew_RadioButton=flags=gcnew
+
+OS_gcnew_Rect=flags=gcnew
+OS_gcnew_Rect_0=
+OS_gcnew_Rect_1=
+OS_gcnew_Rect_2=
+OS_gcnew_Rect_3=
+
+OS_gcnew_Rectangle=accessor=System::Windows::Shapes::Rectangle,flags=gcnew
+
+OS_gcnew_RectangleGeometry=flags=gcnew
+OS_gcnew_RectangleGeometry_0=cast=Rect,flags=gcobject
+
+OS_gcnew_RenderTargetBitmap=flags=gcnew
+OS_gcnew_RenderTargetBitmap_0=
+OS_gcnew_RenderTargetBitmap_1=
+OS_gcnew_RenderTargetBitmap_2=
+OS_gcnew_RenderTargetBitmap_3=
+OS_gcnew_RenderTargetBitmap_4=cast=(PixelFormat),flags=gcobject
+
+OS_gcnew_RepeatButton=flags=gcnew
+
+OS_gcnew_RoutedEventHandler=flags=no_gen
+OS_gcnew_RoutedEventHandler_0=
+OS_gcnew_RoutedEventHandler_1=
+
+OS_gcnew_RoutedPropertyChangedEventHandler=flags=no_gen
+OS_gcnew_RoutedPropertyChangedEventHandler_0=
+OS_gcnew_RoutedPropertyChangedEventHandler_1=
+
+OS_gcnew_RoutedPropertyChangedEventHandlerObject=flags=no_gen
+OS_gcnew_RoutedPropertyChangedEventHandlerObject_0=
+OS_gcnew_RoutedPropertyChangedEventHandlerObject_1=
+
+OS_gcnew_RowDefinition=flags=gcnew
+
+OS_gcnew_Run=flags=gcnew
+
+OS_gcnew_SWTCanvas=flags=no_gen
+OS_gcnew_SWTCanvas_0=
+
+OS_gcnew_SWTCellConverter=flags=no_gen
+OS_gcnew_SWTCellConverter_0=
+OS_gcnew_SWTCellConverter_1=
+
+OS_gcnew_SWTSafeHandle=flags=no_gen gcnew
+OS_gcnew_SWTSafeHandle_0=cast=IntPtr
+OS_gcnew_SWTSafeHandle_1=
+
+OS_gcnew_SWTTextEmbeddedObject=flags=no_gen gcnew
+OS_gcnew_SWTTextEmbeddedObject_0=cast=TextRunProperties^,flags=gcobject
+OS_gcnew_SWTTextEmbeddedObject_1=
+OS_gcnew_SWTTextEmbeddedObject_2=
+OS_gcnew_SWTTextEmbeddedObject_3=
+OS_gcnew_SWTTextEmbeddedObject_4=
+
+OS_gcnew_SWTTextParagraphProperties=flags=no_gen
+OS_gcnew_SWTTextParagraphProperties_0=
+OS_gcnew_SWTTextParagraphProperties_1=
+OS_gcnew_SWTTextParagraphProperties_2=
+OS_gcnew_SWTTextParagraphProperties_3=
+OS_gcnew_SWTTextParagraphProperties_4=
+OS_gcnew_SWTTextParagraphProperties_5=
+OS_gcnew_SWTTextParagraphProperties_6=
+OS_gcnew_SWTTextParagraphProperties_7=
+
+OS_gcnew_SWTTextRunProperties=flags=no_gen gcnew
+OS_gcnew_SWTTextRunProperties_0=cast=Typeface^,flags=gcobject
+OS_gcnew_SWTTextRunProperties_1=
+OS_gcnew_SWTTextRunProperties_2=
+OS_gcnew_SWTTextRunProperties_3=cast=TextDecorationCollection^,flags=gcobject
+OS_gcnew_SWTTextRunProperties_4=cast=Brush^,flags=gcobject
+OS_gcnew_SWTTextRunProperties_5=cast=Brush^,flags=gcobject
+OS_gcnew_SWTTextRunProperties_6=cast=BaselineAlignment
+OS_gcnew_SWTTextRunProperties_7=cast=CultureInfo^,flags=gcobject
+
+OS_gcnew_SWTTextSource=flags=no_gen gcnew
+OS_gcnew_SWTTextSource_0=
+
+OS_gcnew_SWTTreeViewRowPresenter=flags=no_gen gcnew
+OS_gcnew_SWTTreeViewRowPresenter_0=cast=TreeView^,flags=gcobject
+
+OS_gcnew_SaveFileDialog=flags=gcnew
+
+OS_gcnew_ScaleTransform=flags=gcnew
+OS_gcnew_ScaleTransform_0=
+OS_gcnew_ScaleTransform_1=
+
+OS_gcnew_ScrollBar=flags=gcnew
+
+OS_gcnew_ScrollEventHandler=flags=no_gen
+OS_gcnew_ScrollEventHandler_0=
+OS_gcnew_ScrollEventHandler_1=
+
+OS_gcnew_SelectionChangedEventHandler=flags=no_gen
+OS_gcnew_SelectionChangedEventHandler_0=
+OS_gcnew_SelectionChangedEventHandler_1=
+
+OS_gcnew_Separator=flags=gcnew
+
+OS_gcnew_Setter=flags=gcnew
+OS_gcnew_Setter_0=cast=(DependencyProperty^),flags=gcobject
+OS_gcnew_Setter_1=cast=Visibility
+
+OS_gcnew_1Size__=flags=gcnew
+
+OS_gcnew_1Size__DD=flags=gcnew
+OS_gcnew_1Size__DD_0=
+OS_gcnew_1Size__DD_1=
+
+OS_gcnew_SizeChangedEventHandler=flags=no_gen
+OS_gcnew_SizeChangedEventHandler_0=
+OS_gcnew_SizeChangedEventHandler_1=
+
+OS_gcnew_Slider=flags=gcnew
+
+OS_gcnew_SolidColorBrush=flags=gcnew
+OS_gcnew_SolidColorBrush_0=cast=(Color),flags=gcobject
+
+OS_gcnew_StackPanel=flags=gcnew
+
+OS_gcnew_StreamGeometry=flags=gcnew
+
+OS_gcnew_String=flags=gcnew
+OS_gcnew_String_0=cast=const wchar_t *
+
+OS_gcnew_Style=flags=gcnew
+
+OS_gcnew_TabControl=flags=gcnew
+
+OS_gcnew_TabItem=flags=gcnew
+
+OS_gcnew_TextBlock=flags=gcnew
+
+OS_gcnew_TextBox=flags=gcnew
+
+OS_gcnew_TextChangedEventHandler=flags=no_gen
+OS_gcnew_TextChangedEventHandler_0=
+OS_gcnew_TextChangedEventHandler_1=
+
+OS_gcnew_TextCharacters=flags=gcnew
+OS_gcnew_TextCharacters_0=cast=String^,flags=gcobject
+OS_gcnew_TextCharacters_1=
+OS_gcnew_TextCharacters_2=
+OS_gcnew_TextCharacters_3=cast=TextRunProperties^,flags=gcobject
+
+OS_gcnew_TextCompositionEventHandler=flags=no_gen gcnew
+OS_gcnew_TextCompositionEventHandler_0=
+OS_gcnew_TextCompositionEventHandler_1=
+
+OS_gcnew_TextDecorationCollection=flags=gcnew
+OS_gcnew_TextDecorationCollection_0=
+
+OS_gcnew_TextEndOfLine=flags=gcnew
+OS_gcnew_TextEndOfLine_0=
+OS_gcnew_TextEndOfLine_1=cast=TextRunProperties^,flags=gcobject
+
+OS_gcnew_TextEndOfParagraph=flags=gcnew
+OS_gcnew_TextEndOfParagraph_0=
+OS_gcnew_TextEndOfParagraph_1=cast=TextRunProperties^,flags=gcobject
+
+OS_gcnew_TextTabProperties=flags=gcnew
+OS_gcnew_TextTabProperties_0=cast=TextTabAlignment
+OS_gcnew_TextTabProperties_1=
+OS_gcnew_TextTabProperties_2=
+OS_gcnew_TextTabProperties_3=
+
+OS_gcnew_TextTabPropertiesCollection=accessor=System::Collections::Generic::List<TextTabProperties^>,flags=gcnew
+OS_gcnew_TextTabPropertiesCollection_0=
+
+OS_gcnew_Thickness=flags=gcnew
+OS_gcnew_Thickness_0=
+OS_gcnew_Thickness_1=
+OS_gcnew_Thickness_2=
+OS_gcnew_Thickness_3=
+
+OS_gcnew_TimeSpan=flags=gcnew
+OS_gcnew_TimeSpan_0=
+
+OS_gcnew_TimerHandler=flags=no_gen
+OS_gcnew_TimerHandler_0=
+OS_gcnew_TimerHandler_1=
+
+OS_gcnew_ToggleButton=flags=gcnew
+
+OS_gcnew_ToolBar=flags=gcnew
+
+OS_gcnew_ToolBarTray=flags=gcnew
+
+OS_gcnew_TransformGroup=flags=gcnew
+
+OS_gcnew_TranslateTransform=flags=gcnew
+OS_gcnew_TranslateTransform_0=
+OS_gcnew_TranslateTransform_1=
+
+OS_gcnew_TreeView=flags=gcnew
+
+OS_gcnew_TreeViewItem=flags=gcnew
+
+OS_gcnew_Typeface=flags=gcnew
+OS_gcnew_Typeface_0=cast=FontFamily^,flags=gcobject
+OS_gcnew_Typeface_1=cast=(FontStyle),flags=gcobject
+OS_gcnew_Typeface_2=cast=(FontWeight),flags=gcobject
+OS_gcnew_Typeface_3=cast=(FontStretch),flags=gcobject
+
+OS_gcnew_Uri=flags=gcnew
+OS_gcnew_Uri_0=cast=String^,flags=gcobject
+OS_gcnew_Uri_1=cast=UriKind
+
+OS_gcnew_Window=flags=gcnew
+
+OS_gcnew_1WriteableBitmap__I=flags=gcnew
+OS_gcnew_1WriteableBitmap__I_0=cast=BitmapSource^,flags=gcobject
+
+OS_gcnew_1WriteableBitmap__IIDDII=flags=gcnew
+OS_gcnew_1WriteableBitmap__IIDDII_0=
+OS_gcnew_1WriteableBitmap__IIDDII_1=
+OS_gcnew_1WriteableBitmap__IIDDII_2=
+OS_gcnew_1WriteableBitmap__IIDDII_3=
+OS_gcnew_1WriteableBitmap__IIDDII_4=cast=PixelFormat,flags=gcobject
+OS_gcnew_1WriteableBitmap__IIDDII_5=cast=BitmapPalette^,flags=gcobject
+
+OS_gcnew_byte=accessor=array<unsigned char>,flags=gcnew
+OS_gcnew_byte_0=
+
+OS_memmove=flags=no_gen
+OS_memmove_0=flags=critical
+OS_memmove_1=flags=gcobject
+OS_memmove_2=
+
+
+org_eclipse_swt_internal_wpf_POINT=
+POINT_x=
+POINT_y=
+
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/library/xpcom.cpp b/bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/library/xpcom.cpp
index 9d95d733c7..9baa4052b0 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/library/xpcom.cpp
+++ b/bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/library/xpcom.cpp
@@ -13,11 +13,10 @@
#include "xpcom_structs.h"
#include "xpcom_stats.h"
-extern "C" {
-
#define XPCOM_NATIVE(func) Java_org_eclipse_swt_internal_mozilla_XPCOM_##func
#ifndef NO_Call
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(Call)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jbyteArray arg3, jint arg4, jint arg5, jintArray arg6);
JNIEXPORT jint JNICALL XPCOM_NATIVE(Call)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jbyteArray arg3, jint arg4, jint arg5, jintArray arg6)
{
@@ -37,6 +36,7 @@ fail:
#endif
#ifndef NO_NS_1GetComponentManager
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(NS_1GetComponentManager)(JNIEnv *env, jclass that, jintArray arg0);
JNIEXPORT jint JNICALL XPCOM_NATIVE(NS_1GetComponentManager)
(JNIEnv *env, jclass that, jintArray arg0)
{
@@ -53,6 +53,7 @@ fail:
#endif
#ifndef NO_NS_1GetServiceManager
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(NS_1GetServiceManager)(JNIEnv *env, jclass that, jintArray arg0);
JNIEXPORT jint JNICALL XPCOM_NATIVE(NS_1GetServiceManager)
(JNIEnv *env, jclass that, jintArray arg0)
{
@@ -69,6 +70,7 @@ fail:
#endif
#ifndef NO_NS_1InitXPCOM2
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(NS_1InitXPCOM2)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2);
JNIEXPORT jint JNICALL XPCOM_NATIVE(NS_1InitXPCOM2)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2)
{
@@ -81,6 +83,7 @@ JNIEXPORT jint JNICALL XPCOM_NATIVE(NS_1InitXPCOM2)
#endif
#ifndef NO_NS_1NewLocalFile
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(NS_1NewLocalFile)(JNIEnv *env, jclass that, jint arg0, jboolean arg1, jintArray arg2);
JNIEXPORT jint JNICALL XPCOM_NATIVE(NS_1NewLocalFile)
(JNIEnv *env, jclass that, jint arg0, jboolean arg1, jintArray arg2)
{
@@ -97,6 +100,7 @@ fail:
#endif
#ifndef NO_VtblCall__II
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II)(JNIEnv *env, jclass that, jint arg0, jint arg1);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II)
(JNIEnv *env, jclass that, jint arg0, jint arg1)
{
@@ -109,6 +113,7 @@ JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II)
#endif
#ifndef NO_VtblCall__IIF
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIF)(JNIEnv *env, jclass that, jint arg0, jint arg1, jfloat arg2);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIF)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jfloat arg2)
{
@@ -121,6 +126,7 @@ JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIF)
#endif
#ifndef NO_VtblCall__III
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__III)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__III)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2)
{
@@ -133,6 +139,7 @@ JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__III)
#endif
#ifndef NO_VtblCall__IIII
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIII)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIII)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3)
{
@@ -145,6 +152,7 @@ JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIII)
#endif
#ifndef NO_VtblCall__IIIII
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIIII)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3, jint arg4);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIIII)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3, jint arg4)
{
@@ -157,6 +165,7 @@ JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIIII)
#endif
#ifndef NO_VtblCall__IIIIII
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIIIII)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3, jint arg4, jint arg5);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIIIII)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3, jint arg4, jint arg5)
{
@@ -169,6 +178,7 @@ JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIIIII)
#endif
#ifndef NO_VtblCall__IIIIIII
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIIIIII)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3, jint arg4, jint arg5, jint arg6);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIIIIII)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3, jint arg4, jint arg5, jint arg6)
{
@@ -181,6 +191,7 @@ JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIIIIII)
#endif
#ifndef NO_VtblCall__IIIIIIII
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIIIIIII)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3, jint arg4, jint arg5, jint arg6, jint arg7);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIIIIIII)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3, jint arg4, jint arg5, jint arg6, jint arg7)
{
@@ -193,6 +204,7 @@ JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIIIIIII)
#endif
#ifndef NO_VtblCall__IIIIIIJII
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIIIIIJII)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3, jint arg4, jint arg5, jlong arg6, jint arg7, jint arg8);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIIIIIJII)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3, jint arg4, jint arg5, jlong arg6, jint arg7, jint arg8)
{
@@ -205,6 +217,7 @@ JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIIIIIJII)
#endif
#ifndef NO_VtblCall__IIIIIIZ
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIIIIIZ)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3, jint arg4, jint arg5, jboolean arg6);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIIIIIZ)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3, jint arg4, jint arg5, jboolean arg6)
{
@@ -217,6 +230,7 @@ JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIIIIIZ)
#endif
#ifndef NO_VtblCall__IIIIIZ
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIIIIZ)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3, jint arg4, jboolean arg5);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIIIIZ)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3, jint arg4, jboolean arg5)
{
@@ -229,6 +243,7 @@ JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIIIIZ)
#endif
#ifndef NO_VtblCall__IIIIIZ_3CIIIIZ_3I_3I
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIIIIZ_3CIIIIZ_3I_3I)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3, jint arg4, jboolean arg5, jcharArray arg6, jint arg7, jint arg8, jint arg9, jint arg10, jboolean arg11, jintArray arg12, jintArray arg13);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIIIIZ_3CIIIIZ_3I_3I)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3, jint arg4, jboolean arg5, jcharArray arg6, jint arg7, jint arg8, jint arg9, jint arg10, jboolean arg11, jintArray arg12, jintArray arg13)
{
@@ -251,6 +266,7 @@ fail:
#endif
#ifndef NO_VtblCall__IIIII_3C
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIIII_3C)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3, jint arg4, jcharArray arg5);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIIII_3C)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3, jint arg4, jcharArray arg5)
{
@@ -267,6 +283,7 @@ fail:
#endif
#ifndef NO_VtblCall__IIIII_3I
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIIII_3I)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3, jint arg4, jintArray arg5);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIIII_3I)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3, jint arg4, jintArray arg5)
{
@@ -283,6 +300,7 @@ fail:
#endif
#ifndef NO_VtblCall__IIIIJJJJ
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIIIJJJJ)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3, jlong arg4, jlong arg5, jlong arg6, jlong arg7);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIIIJJJJ)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3, jlong arg4, jlong arg5, jlong arg6, jlong arg7)
{
@@ -295,6 +313,7 @@ JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIIIJJJJ)
#endif
#ifndef NO_VtblCall__IIIIJZ
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIIIJZ)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3, jlong arg4, jboolean arg5);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIIIJZ)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3, jlong arg4, jboolean arg5)
{
@@ -307,6 +326,7 @@ JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIIIJZ)
#endif
#ifndef NO_VtblCall__IIIIZ
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIIIZ)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3, jboolean arg4);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIIIZ)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3, jboolean arg4)
{
@@ -319,6 +339,7 @@ JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIIIZ)
#endif
#ifndef NO_VtblCall__IIII_3C
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIII_3C)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3, jcharArray arg4);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIII_3C)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3, jcharArray arg4)
{
@@ -335,6 +356,7 @@ fail:
#endif
#ifndef NO_VtblCall__IIII_3CIJI
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIII_3CIJI)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3, jcharArray arg4, jint arg5, jlong arg6, jint arg7);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIII_3CIJI)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3, jcharArray arg4, jint arg5, jlong arg6, jint arg7)
{
@@ -351,6 +373,7 @@ fail:
#endif
#ifndef NO_VtblCall__IIII_3I
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIII_3I)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3, jintArray arg4);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIII_3I)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3, jintArray arg4)
{
@@ -367,6 +390,7 @@ fail:
#endif
#ifndef NO_VtblCall__IIII_3J
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIII_3J)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3, jlongArray arg4);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIII_3J)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3, jlongArray arg4)
{
@@ -383,6 +407,7 @@ fail:
#endif
#ifndef NO_VtblCall__IIIJJ
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIIJJ)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jlong arg3, jlong arg4);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIIJJ)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jlong arg3, jlong arg4)
{
@@ -395,6 +420,7 @@ JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIIJJ)
#endif
#ifndef NO_VtblCall__IIILorg_eclipse_swt_internal_mozilla_nsID_2
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIILorg_eclipse_swt_internal_mozilla_nsID_2)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jobject arg3);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIILorg_eclipse_swt_internal_mozilla_nsID_2)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jobject arg3)
{
@@ -411,6 +437,7 @@ fail:
#endif
#ifndef NO_VtblCall__IIILorg_eclipse_swt_internal_mozilla_nsID_2_3I
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIILorg_eclipse_swt_internal_mozilla_nsID_2_3I)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jobject arg3, jintArray arg4);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIILorg_eclipse_swt_internal_mozilla_nsID_2_3I)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jobject arg3, jintArray arg4)
{
@@ -430,6 +457,7 @@ fail:
#endif
#ifndef NO_VtblCall__IIIZ
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIIZ)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jboolean arg3);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIIZ)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jboolean arg3)
{
@@ -442,6 +470,7 @@ JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIIZ)
#endif
#ifndef NO_VtblCall__IIIZZ
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIIZZ)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jboolean arg3, jboolean arg4);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIIZZ)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jboolean arg3, jboolean arg4)
{
@@ -454,6 +483,7 @@ JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIIZZ)
#endif
#ifndef NO_VtblCall__IIIZZII
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIIZZII)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jboolean arg3, jboolean arg4, jint arg5, jint arg6);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIIZZII)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jboolean arg3, jboolean arg4, jint arg5, jint arg6)
{
@@ -466,6 +496,7 @@ JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIIZZII)
#endif
#ifndef NO_VtblCall__IIIZZIIIIIIZZZZSI
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIIZZIIIIIIZZZZSI)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jboolean arg3, jboolean arg4, jint arg5, jint arg6, jint arg7, jint arg8, jint arg9, jint arg10, jboolean arg11, jboolean arg12, jboolean arg13, jboolean arg14, jshort arg15, jint arg16);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIIZZIIIIIIZZZZSI)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jboolean arg3, jboolean arg4, jint arg5, jint arg6, jint arg7, jint arg8, jint arg9, jint arg10, jboolean arg11, jboolean arg12, jboolean arg13, jboolean arg14, jshort arg15, jint arg16)
{
@@ -478,6 +509,7 @@ JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIIZZIIIIIIZZZZSI)
#endif
#ifndef NO_VtblCall__IIIZ_3Z
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIIZ_3Z)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jboolean arg3, jbooleanArray arg4);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIIZ_3Z)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jboolean arg3, jbooleanArray arg4)
{
@@ -494,6 +526,7 @@ fail:
#endif
#ifndef NO_VtblCall__III_3B
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__III_3B)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jbyteArray arg3);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__III_3B)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jbyteArray arg3)
{
@@ -510,6 +543,7 @@ fail:
#endif
#ifndef NO_VtblCall__III_3BI_3I
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__III_3BI_3I)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jbyteArray arg3, jint arg4, jintArray arg5);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__III_3BI_3I)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jbyteArray arg3, jint arg4, jintArray arg5)
{
@@ -529,6 +563,7 @@ fail:
#endif
#ifndef NO_VtblCall__III_3BZ
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__III_3BZ)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jbyteArray arg3, jboolean arg4);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__III_3BZ)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jbyteArray arg3, jboolean arg4)
{
@@ -545,6 +580,7 @@ fail:
#endif
#ifndef NO_VtblCall__III_3B_3B_3BI_3I
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__III_3B_3B_3BI_3I)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jbyteArray arg3, jbyteArray arg4, jbyteArray arg5, jint arg6, jintArray arg7);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__III_3B_3B_3BI_3I)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jbyteArray arg3, jbyteArray arg4, jbyteArray arg5, jint arg6, jintArray arg7)
{
@@ -570,6 +606,7 @@ fail:
#endif
#ifndef NO_VtblCall__III_3B_3C
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__III_3B_3C)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jbyteArray arg3, jcharArray arg4);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__III_3B_3C)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jbyteArray arg3, jcharArray arg4)
{
@@ -589,6 +626,7 @@ fail:
#endif
#ifndef NO_VtblCall__III_3B_3Z
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__III_3B_3Z)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jbyteArray arg3, jbooleanArray arg4);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__III_3B_3Z)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jbyteArray arg3, jbooleanArray arg4)
{
@@ -608,6 +646,7 @@ fail:
#endif
#ifndef NO_VtblCall__III_3C
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__III_3C)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jcharArray arg3);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__III_3C)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jcharArray arg3)
{
@@ -624,6 +663,7 @@ fail:
#endif
#ifndef NO_VtblCall__III_3CI
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__III_3CI)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jcharArray arg3, jint arg4);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__III_3CI)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jcharArray arg3, jint arg4)
{
@@ -640,6 +680,7 @@ fail:
#endif
#ifndef NO_VtblCall__III_3C_3C
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__III_3C_3C)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jcharArray arg3, jcharArray arg4);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__III_3C_3C)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jcharArray arg3, jcharArray arg4)
{
@@ -659,6 +700,7 @@ fail:
#endif
#ifndef NO_VtblCall__III_3C_3CI_3C_3C_3C_3C_3Z_3I
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__III_3C_3CI_3C_3C_3C_3C_3Z_3I)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jcharArray arg3, jcharArray arg4, jint arg5, jcharArray arg6, jcharArray arg7, jcharArray arg8, jcharArray arg9, jbooleanArray arg10, jintArray arg11);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__III_3C_3CI_3C_3C_3C_3C_3Z_3I)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jcharArray arg3, jcharArray arg4, jint arg5, jcharArray arg6, jcharArray arg7, jcharArray arg8, jcharArray arg9, jbooleanArray arg10, jintArray arg11)
{
@@ -696,6 +738,7 @@ fail:
#endif
#ifndef NO_VtblCall__III_3C_3CI_3I_3I_3Z
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__III_3C_3CI_3I_3I_3Z)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jcharArray arg3, jcharArray arg4, jint arg5, jintArray arg6, jintArray arg7, jbooleanArray arg8);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__III_3C_3CI_3I_3I_3Z)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jcharArray arg3, jcharArray arg4, jint arg5, jintArray arg6, jintArray arg7, jbooleanArray arg8)
{
@@ -724,6 +767,7 @@ fail:
#endif
#ifndef NO_VtblCall__III_3C_3C_3C_3Z
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__III_3C_3C_3C_3Z)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jcharArray arg3, jcharArray arg4, jcharArray arg5, jbooleanArray arg6);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__III_3C_3C_3C_3Z)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jcharArray arg3, jcharArray arg4, jcharArray arg5, jbooleanArray arg6)
{
@@ -749,6 +793,7 @@ fail:
#endif
#ifndef NO_VtblCall__III_3C_3C_3C_3Z_3Z
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__III_3C_3C_3C_3Z_3Z)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jcharArray arg3, jcharArray arg4, jcharArray arg5, jbooleanArray arg6, jbooleanArray arg7);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__III_3C_3C_3C_3Z_3Z)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jcharArray arg3, jcharArray arg4, jcharArray arg5, jbooleanArray arg6, jbooleanArray arg7)
{
@@ -777,6 +822,7 @@ fail:
#endif
#ifndef NO_VtblCall__III_3C_3C_3I
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__III_3C_3C_3I)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jcharArray arg3, jcharArray arg4, jintArray arg5);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__III_3C_3C_3I)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jcharArray arg3, jcharArray arg4, jintArray arg5)
{
@@ -799,6 +845,7 @@ fail:
#endif
#ifndef NO_VtblCall__III_3C_3C_3I_3C_3Z_3Z
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__III_3C_3C_3I_3C_3Z_3Z)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jcharArray arg3, jcharArray arg4, jintArray arg5, jcharArray arg6, jbooleanArray arg7, jbooleanArray arg8);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__III_3C_3C_3I_3C_3Z_3Z)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jcharArray arg3, jcharArray arg4, jintArray arg5, jcharArray arg6, jbooleanArray arg7, jbooleanArray arg8)
{
@@ -830,6 +877,7 @@ fail:
#endif
#ifndef NO_VtblCall__III_3C_3C_3I_3I_3C_3Z_3Z
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__III_3C_3C_3I_3I_3C_3Z_3Z)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jcharArray arg3, jcharArray arg4, jintArray arg5, jintArray arg6, jcharArray arg7, jbooleanArray arg8, jbooleanArray arg9);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__III_3C_3C_3I_3I_3C_3Z_3Z)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jcharArray arg3, jcharArray arg4, jintArray arg5, jintArray arg6, jcharArray arg7, jbooleanArray arg8, jbooleanArray arg9)
{
@@ -864,6 +912,7 @@ fail:
#endif
#ifndef NO_VtblCall__III_3C_3C_3Z
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__III_3C_3C_3Z)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jcharArray arg3, jcharArray arg4, jbooleanArray arg5);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__III_3C_3C_3Z)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jcharArray arg3, jcharArray arg4, jbooleanArray arg5)
{
@@ -886,6 +935,7 @@ fail:
#endif
#ifndef NO_VtblCall__III_3I
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__III_3I)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jintArray arg3);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__III_3I)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jintArray arg3)
{
@@ -902,6 +952,7 @@ fail:
#endif
#ifndef NO_VtblCall__III_3I_3I_3I_3I
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__III_3I_3I_3I_3I)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jintArray arg3, jintArray arg4, jintArray arg5, jintArray arg6);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__III_3I_3I_3I_3I)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jintArray arg3, jintArray arg4, jintArray arg5, jintArray arg6)
{
@@ -927,6 +978,7 @@ fail:
#endif
#ifndef NO_VtblCall__III_3Z
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__III_3Z)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jbooleanArray arg3);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__III_3Z)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jbooleanArray arg3)
{
@@ -943,6 +995,7 @@ fail:
#endif
#ifndef NO_VtblCall__IIJ
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIJ)(JNIEnv *env, jclass that, jint arg0, jint arg1, jlong arg2);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIJ)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jlong arg2)
{
@@ -955,6 +1008,7 @@ JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIJ)
#endif
#ifndef NO_VtblCall__IIJI
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIJI)(JNIEnv *env, jclass that, jint arg0, jint arg1, jlong arg2, jint arg3);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIJI)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jlong arg2, jint arg3)
{
@@ -967,6 +1021,7 @@ JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIJI)
#endif
#ifndef NO_VtblCall__IIJJ
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIJJ)(JNIEnv *env, jclass that, jint arg0, jint arg1, jlong arg2, jlong arg3);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIJJ)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jlong arg2, jlong arg3)
{
@@ -979,6 +1034,7 @@ JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIJJ)
#endif
#ifndef NO_VtblCall__IIJJI
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIJJI)(JNIEnv *env, jclass that, jint arg0, jint arg1, jlong arg2, jlong arg3, jint arg4);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIJJI)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jlong arg2, jlong arg3, jint arg4)
{
@@ -991,6 +1047,7 @@ JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIJJI)
#endif
#ifndef NO_VtblCall__IIJJJJJ
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIJJJJJ)(JNIEnv *env, jclass that, jint arg0, jint arg1, jlong arg2, jlong arg3, jlong arg4, jlong arg5, jlong arg6);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIJJJJJ)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jlong arg2, jlong arg3, jlong arg4, jlong arg5, jlong arg6)
{
@@ -1003,6 +1060,7 @@ JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIJJJJJ)
#endif
#ifndef NO_VtblCall__IILorg_eclipse_swt_internal_mozilla_nsID_2I
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IILorg_eclipse_swt_internal_mozilla_nsID_2I)(JNIEnv *env, jclass that, jint arg0, jint arg1, jobject arg2, jint arg3);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IILorg_eclipse_swt_internal_mozilla_nsID_2I)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jobject arg2, jint arg3)
{
@@ -1019,6 +1077,7 @@ fail:
#endif
#ifndef NO_VtblCall__IILorg_eclipse_swt_internal_mozilla_nsID_2ILorg_eclipse_swt_internal_mozilla_nsID_2_3I
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IILorg_eclipse_swt_internal_mozilla_nsID_2ILorg_eclipse_swt_internal_mozilla_nsID_2_3I)(JNIEnv *env, jclass that, jint arg0, jint arg1, jobject arg2, jint arg3, jobject arg4, jintArray arg5);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IILorg_eclipse_swt_internal_mozilla_nsID_2ILorg_eclipse_swt_internal_mozilla_nsID_2_3I)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jobject arg2, jint arg3, jobject arg4, jintArray arg5)
{
@@ -1041,6 +1100,7 @@ fail:
#endif
#ifndef NO_VtblCall__IILorg_eclipse_swt_internal_mozilla_nsID_2Lorg_eclipse_swt_internal_mozilla_nsID_2_3I
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IILorg_eclipse_swt_internal_mozilla_nsID_2Lorg_eclipse_swt_internal_mozilla_nsID_2_3I)(JNIEnv *env, jclass that, jint arg0, jint arg1, jobject arg2, jobject arg3, jintArray arg4);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IILorg_eclipse_swt_internal_mozilla_nsID_2Lorg_eclipse_swt_internal_mozilla_nsID_2_3I)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jobject arg2, jobject arg3, jintArray arg4)
{
@@ -1063,6 +1123,7 @@ fail:
#endif
#ifndef NO_VtblCall__IILorg_eclipse_swt_internal_mozilla_nsID_2Lorg_eclipse_swt_internal_mozilla_nsID_2_3Z
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IILorg_eclipse_swt_internal_mozilla_nsID_2Lorg_eclipse_swt_internal_mozilla_nsID_2_3Z)(JNIEnv *env, jclass that, jint arg0, jint arg1, jobject arg2, jobject arg3, jbooleanArray arg4);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IILorg_eclipse_swt_internal_mozilla_nsID_2Lorg_eclipse_swt_internal_mozilla_nsID_2_3Z)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jobject arg2, jobject arg3, jbooleanArray arg4)
{
@@ -1085,6 +1146,7 @@ fail:
#endif
#ifndef NO_VtblCall__IILorg_eclipse_swt_internal_mozilla_nsID_2_3B_3BI
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IILorg_eclipse_swt_internal_mozilla_nsID_2_3B_3BI)(JNIEnv *env, jclass that, jint arg0, jint arg1, jobject arg2, jbyteArray arg3, jbyteArray arg4, jint arg5);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IILorg_eclipse_swt_internal_mozilla_nsID_2_3B_3BI)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jobject arg2, jbyteArray arg3, jbyteArray arg4, jint arg5)
{
@@ -1107,6 +1169,7 @@ fail:
#endif
#ifndef NO_VtblCall__IILorg_eclipse_swt_internal_mozilla_nsID_2_3B_3BI_3B_3B
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IILorg_eclipse_swt_internal_mozilla_nsID_2_3B_3BI_3B_3B)(JNIEnv *env, jclass that, jint arg0, jint arg1, jobject arg2, jbyteArray arg3, jbyteArray arg4, jint arg5, jbyteArray arg6, jbyteArray arg7);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IILorg_eclipse_swt_internal_mozilla_nsID_2_3B_3BI_3B_3B)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jobject arg2, jbyteArray arg3, jbyteArray arg4, jint arg5, jbyteArray arg6, jbyteArray arg7)
{
@@ -1135,6 +1198,7 @@ fail:
#endif
#ifndef NO_VtblCall__IILorg_eclipse_swt_internal_mozilla_nsID_2_3I
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IILorg_eclipse_swt_internal_mozilla_nsID_2_3I)(JNIEnv *env, jclass that, jint arg0, jint arg1, jobject arg2, jintArray arg3);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IILorg_eclipse_swt_internal_mozilla_nsID_2_3I)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jobject arg2, jintArray arg3)
{
@@ -1154,6 +1218,7 @@ fail:
#endif
#ifndef NO_VtblCall__IILorg_eclipse_swt_internal_mozilla_nsID_2_3Z
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IILorg_eclipse_swt_internal_mozilla_nsID_2_3Z)(JNIEnv *env, jclass that, jint arg0, jint arg1, jobject arg2, jbooleanArray arg3);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IILorg_eclipse_swt_internal_mozilla_nsID_2_3Z)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jobject arg2, jbooleanArray arg3)
{
@@ -1173,6 +1238,7 @@ fail:
#endif
#ifndef NO_VtblCall__IIZ
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIZ)(JNIEnv *env, jclass that, jint arg0, jint arg1, jboolean arg2);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIZ)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jboolean arg2)
{
@@ -1185,6 +1251,7 @@ JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIZ)
#endif
#ifndef NO_VtblCall__IIZI
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIZI)(JNIEnv *env, jclass that, jint arg0, jint arg1, jboolean arg2, jint arg3);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIZI)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jboolean arg2, jint arg3)
{
@@ -1197,6 +1264,7 @@ JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIZI)
#endif
#ifndef NO_VtblCall__IIZ_3Z
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIZ_3Z)(JNIEnv *env, jclass that, jint arg0, jint arg1, jboolean arg2, jbooleanArray arg3);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__IIZ_3Z)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jboolean arg2, jbooleanArray arg3)
{
@@ -1213,6 +1281,7 @@ fail:
#endif
#ifndef NO_VtblCall__II_3B
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3B)(JNIEnv *env, jclass that, jint arg0, jint arg1, jbyteArray arg2);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3B)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jbyteArray arg2)
{
@@ -1229,6 +1298,7 @@ fail:
#endif
#ifndef NO_VtblCall__II_3BI
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3BI)(JNIEnv *env, jclass that, jint arg0, jint arg1, jbyteArray arg2, jint arg3);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3BI)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jbyteArray arg2, jint arg3)
{
@@ -1245,6 +1315,7 @@ fail:
#endif
#ifndef NO_VtblCall__II_3BILorg_eclipse_swt_internal_mozilla_nsID_2_3I
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3BILorg_eclipse_swt_internal_mozilla_nsID_2_3I)(JNIEnv *env, jclass that, jint arg0, jint arg1, jbyteArray arg2, jint arg3, jobject arg4, jintArray arg5);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3BILorg_eclipse_swt_internal_mozilla_nsID_2_3I)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jbyteArray arg2, jint arg3, jobject arg4, jintArray arg5)
{
@@ -1267,6 +1338,7 @@ fail:
#endif
#ifndef NO_VtblCall__II_3BI_3I
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3BI_3I)(JNIEnv *env, jclass that, jint arg0, jint arg1, jbyteArray arg2, jint arg3, jintArray arg4);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3BI_3I)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jbyteArray arg2, jint arg3, jintArray arg4)
{
@@ -1286,6 +1358,7 @@ fail:
#endif
#ifndef NO_VtblCall__II_3BJ
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3BJ)(JNIEnv *env, jclass that, jint arg0, jint arg1, jbyteArray arg2, jlong arg3);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3BJ)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jbyteArray arg2, jlong arg3)
{
@@ -1302,6 +1375,7 @@ fail:
#endif
#ifndef NO_VtblCall__II_3BLorg_eclipse_swt_internal_mozilla_nsID_2I
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3BLorg_eclipse_swt_internal_mozilla_nsID_2I)(JNIEnv *env, jclass that, jint arg0, jint arg1, jbyteArray arg2, jobject arg3, jint arg4);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3BLorg_eclipse_swt_internal_mozilla_nsID_2I)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jbyteArray arg2, jobject arg3, jint arg4)
{
@@ -1321,6 +1395,7 @@ fail:
#endif
#ifndef NO_VtblCall__II_3BLorg_eclipse_swt_internal_mozilla_nsID_2_3I
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3BLorg_eclipse_swt_internal_mozilla_nsID_2_3I)(JNIEnv *env, jclass that, jint arg0, jint arg1, jbyteArray arg2, jobject arg3, jintArray arg4);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3BLorg_eclipse_swt_internal_mozilla_nsID_2_3I)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jbyteArray arg2, jobject arg3, jintArray arg4)
{
@@ -1343,6 +1418,7 @@ fail:
#endif
#ifndef NO_VtblCall__II_3BLorg_eclipse_swt_internal_mozilla_nsID_2_3Z
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3BLorg_eclipse_swt_internal_mozilla_nsID_2_3Z)(JNIEnv *env, jclass that, jint arg0, jint arg1, jbyteArray arg2, jobject arg3, jbooleanArray arg4);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3BLorg_eclipse_swt_internal_mozilla_nsID_2_3Z)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jbyteArray arg2, jobject arg3, jbooleanArray arg4)
{
@@ -1365,6 +1441,7 @@ fail:
#endif
#ifndef NO_VtblCall__II_3BZI_3I_3Z
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3BZI_3I_3Z)(JNIEnv *env, jclass that, jint arg0, jint arg1, jbyteArray arg2, jboolean arg3, jint arg4, jintArray arg5, jbooleanArray arg6);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3BZI_3I_3Z)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jbyteArray arg2, jboolean arg3, jint arg4, jintArray arg5, jbooleanArray arg6)
{
@@ -1387,6 +1464,7 @@ fail:
#endif
#ifndef NO_VtblCall__II_3BZ_3I_3Z
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3BZ_3I_3Z)(JNIEnv *env, jclass that, jint arg0, jint arg1, jbyteArray arg2, jboolean arg3, jintArray arg4, jbooleanArray arg5);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3BZ_3I_3Z)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jbyteArray arg2, jboolean arg3, jintArray arg4, jbooleanArray arg5)
{
@@ -1409,6 +1487,7 @@ fail:
#endif
#ifndef NO_VtblCall__II_3B_3B
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3B_3B)(JNIEnv *env, jclass that, jint arg0, jint arg1, jbyteArray arg2, jbyteArray arg3);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3B_3B)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jbyteArray arg2, jbyteArray arg3)
{
@@ -1428,6 +1507,7 @@ fail:
#endif
#ifndef NO_VtblCall__II_3B_3BZ
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3B_3BZ)(JNIEnv *env, jclass that, jint arg0, jint arg1, jbyteArray arg2, jbyteArray arg3, jboolean arg4);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3B_3BZ)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jbyteArray arg2, jbyteArray arg3, jboolean arg4)
{
@@ -1447,6 +1527,7 @@ fail:
#endif
#ifndef NO_VtblCall__II_3B_3B_3BZZ_3I
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3B_3B_3BZZ_3I)(JNIEnv *env, jclass that, jint arg0, jint arg1, jbyteArray arg2, jbyteArray arg3, jbyteArray arg4, jboolean arg5, jboolean arg6, jintArray arg7);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3B_3B_3BZZ_3I)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jbyteArray arg2, jbyteArray arg3, jbyteArray arg4, jboolean arg5, jboolean arg6, jintArray arg7)
{
@@ -1472,6 +1553,7 @@ fail:
#endif
#ifndef NO_VtblCall__II_3B_3B_3I
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3B_3B_3I)(JNIEnv *env, jclass that, jint arg0, jint arg1, jbyteArray arg2, jbyteArray arg3, jintArray arg4);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3B_3B_3I)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jbyteArray arg2, jbyteArray arg3, jintArray arg4)
{
@@ -1494,6 +1576,7 @@ fail:
#endif
#ifndef NO_VtblCall__II_3B_3I
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3B_3I)(JNIEnv *env, jclass that, jint arg0, jint arg1, jbyteArray arg2, jintArray arg3);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3B_3I)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jbyteArray arg2, jintArray arg3)
{
@@ -1513,6 +1596,7 @@ fail:
#endif
#ifndef NO_VtblCall__II_3B_3I_3I
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3B_3I_3I)(JNIEnv *env, jclass that, jint arg0, jint arg1, jbyteArray arg2, jintArray arg3, jintArray arg4);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3B_3I_3I)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jbyteArray arg2, jintArray arg3, jintArray arg4)
{
@@ -1535,6 +1619,7 @@ fail:
#endif
#ifndef NO_VtblCall__II_3B_3I_3Z
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3B_3I_3Z)(JNIEnv *env, jclass that, jint arg0, jint arg1, jbyteArray arg2, jintArray arg3, jbooleanArray arg4);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3B_3I_3Z)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jbyteArray arg2, jintArray arg3, jbooleanArray arg4)
{
@@ -1557,6 +1642,7 @@ fail:
#endif
#ifndef NO_VtblCall__II_3B_3J
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3B_3J)(JNIEnv *env, jclass that, jint arg0, jint arg1, jbyteArray arg2, jlongArray arg3);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3B_3J)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jbyteArray arg2, jlongArray arg3)
{
@@ -1576,6 +1662,7 @@ fail:
#endif
#ifndef NO_VtblCall__II_3B_3Z
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3B_3Z)(JNIEnv *env, jclass that, jint arg0, jint arg1, jbyteArray arg2, jbooleanArray arg3);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3B_3Z)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jbyteArray arg2, jbooleanArray arg3)
{
@@ -1595,6 +1682,7 @@ fail:
#endif
#ifndef NO_VtblCall__II_3B_3Z_3I
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3B_3Z_3I)(JNIEnv *env, jclass that, jint arg0, jint arg1, jbyteArray arg2, jbooleanArray arg3, jintArray arg4);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3B_3Z_3I)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jbyteArray arg2, jbooleanArray arg3, jintArray arg4)
{
@@ -1617,6 +1705,7 @@ fail:
#endif
#ifndef NO_VtblCall__II_3C
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3C)(JNIEnv *env, jclass that, jint arg0, jint arg1, jcharArray arg2);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3C)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jcharArray arg2)
{
@@ -1633,6 +1722,7 @@ fail:
#endif
#ifndef NO_VtblCall__II_3CIIII
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3CIIII)(JNIEnv *env, jclass that, jint arg0, jint arg1, jcharArray arg2, jint arg3, jint arg4, jint arg5, jint arg6);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3CIIII)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jcharArray arg2, jint arg3, jint arg4, jint arg5, jint arg6)
{
@@ -1649,6 +1739,7 @@ fail:
#endif
#ifndef NO_VtblCall__II_3CI_3I
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3CI_3I)(JNIEnv *env, jclass that, jint arg0, jint arg1, jcharArray arg2, jint arg3, jintArray arg4);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3CI_3I)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jcharArray arg2, jint arg3, jintArray arg4)
{
@@ -1668,6 +1759,7 @@ fail:
#endif
#ifndef NO_VtblCall__II_3CZ
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3CZ)(JNIEnv *env, jclass that, jint arg0, jint arg1, jcharArray arg2, jboolean arg3);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3CZ)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jcharArray arg2, jboolean arg3)
{
@@ -1684,6 +1776,7 @@ fail:
#endif
#ifndef NO_VtblCall__II_3C_3C
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3C_3C)(JNIEnv *env, jclass that, jint arg0, jint arg1, jcharArray arg2, jcharArray arg3);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3C_3C)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jcharArray arg2, jcharArray arg3)
{
@@ -1703,6 +1796,7 @@ fail:
#endif
#ifndef NO_VtblCall__II_3C_3C_3CZ
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3C_3C_3CZ)(JNIEnv *env, jclass that, jint arg0, jint arg1, jcharArray arg2, jcharArray arg3, jcharArray arg4, jboolean arg5);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3C_3C_3CZ)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jcharArray arg2, jcharArray arg3, jcharArray arg4, jboolean arg5)
{
@@ -1725,6 +1819,7 @@ fail:
#endif
#ifndef NO_VtblCall__II_3C_3Z
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3C_3Z)(JNIEnv *env, jclass that, jint arg0, jint arg1, jcharArray arg2, jbooleanArray arg3);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3C_3Z)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jcharArray arg2, jbooleanArray arg3)
{
@@ -1744,6 +1839,7 @@ fail:
#endif
#ifndef NO_VtblCall__II_3F
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3F)(JNIEnv *env, jclass that, jint arg0, jint arg1, jfloatArray arg2);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3F)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jfloatArray arg2)
{
@@ -1760,6 +1856,7 @@ fail:
#endif
#ifndef NO_VtblCall__II_3I
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3I)(JNIEnv *env, jclass that, jint arg0, jint arg1, jintArray arg2);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3I)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jintArray arg2)
{
@@ -1776,6 +1873,7 @@ fail:
#endif
#ifndef NO_VtblCall__II_3I_3I
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3I_3I)(JNIEnv *env, jclass that, jint arg0, jint arg1, jintArray arg2, jintArray arg3);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3I_3I)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jintArray arg2, jintArray arg3)
{
@@ -1795,6 +1893,7 @@ fail:
#endif
#ifndef NO_VtblCall__II_3I_3I_3I
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3I_3I_3I)(JNIEnv *env, jclass that, jint arg0, jint arg1, jintArray arg2, jintArray arg3, jintArray arg4);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3I_3I_3I)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jintArray arg2, jintArray arg3, jintArray arg4)
{
@@ -1817,6 +1916,7 @@ fail:
#endif
#ifndef NO_VtblCall__II_3I_3I_3I_3I
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3I_3I_3I_3I)(JNIEnv *env, jclass that, jint arg0, jint arg1, jintArray arg2, jintArray arg3, jintArray arg4, jintArray arg5);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3I_3I_3I_3I)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jintArray arg2, jintArray arg3, jintArray arg4, jintArray arg5)
{
@@ -1842,6 +1942,7 @@ fail:
#endif
#ifndef NO_VtblCall__II_3I_3J
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3I_3J)(JNIEnv *env, jclass that, jint arg0, jint arg1, jintArray arg2, jlongArray arg3);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3I_3J)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jintArray arg2, jlongArray arg3)
{
@@ -1861,6 +1962,7 @@ fail:
#endif
#ifndef NO_VtblCall__II_3I_3J_3I
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3I_3J_3I)(JNIEnv *env, jclass that, jint arg0, jint arg1, jintArray arg2, jlongArray arg3, jintArray arg4);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3I_3J_3I)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jintArray arg2, jlongArray arg3, jintArray arg4)
{
@@ -1883,6 +1985,7 @@ fail:
#endif
#ifndef NO_VtblCall__II_3J
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3J)(JNIEnv *env, jclass that, jint arg0, jint arg1, jlongArray arg2);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3J)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jlongArray arg2)
{
@@ -1899,6 +2002,7 @@ fail:
#endif
#ifndef NO_VtblCall__II_3S
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3S)(JNIEnv *env, jclass that, jint arg0, jint arg1, jshortArray arg2);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3S)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jshortArray arg2)
{
@@ -1915,6 +2019,7 @@ fail:
#endif
#ifndef NO_VtblCall__II_3Z
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3Z)(JNIEnv *env, jclass that, jint arg0, jint arg1, jbooleanArray arg2);
JNIEXPORT jint JNICALL XPCOM_NATIVE(VtblCall__II_3Z)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jbooleanArray arg2)
{
@@ -1931,6 +2036,7 @@ fail:
#endif
#ifndef NO_XPCOMGlueShutdown
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(XPCOMGlueShutdown)(JNIEnv *env, jclass that);
JNIEXPORT jint JNICALL XPCOM_NATIVE(XPCOMGlueShutdown)
(JNIEnv *env, jclass that)
{
@@ -1943,6 +2049,7 @@ JNIEXPORT jint JNICALL XPCOM_NATIVE(XPCOMGlueShutdown)
#endif
#ifndef NO_XPCOMGlueStartup
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(XPCOMGlueStartup)(JNIEnv *env, jclass that, jbyteArray arg0);
JNIEXPORT jint JNICALL XPCOM_NATIVE(XPCOMGlueStartup)
(JNIEnv *env, jclass that, jbyteArray arg0)
{
@@ -1959,6 +2066,7 @@ fail:
#endif
#ifndef NO_memmove__ILorg_eclipse_swt_internal_mozilla_nsID_2I
+extern "C" JNIEXPORT void JNICALL XPCOM_NATIVE(memmove__ILorg_eclipse_swt_internal_mozilla_nsID_2I)(JNIEnv *env, jclass that, jint arg0, jobject arg1, jint arg2);
JNIEXPORT void JNICALL XPCOM_NATIVE(memmove__ILorg_eclipse_swt_internal_mozilla_nsID_2I)
(JNIEnv *env, jclass that, jint arg0, jobject arg1, jint arg2)
{
@@ -1973,6 +2081,7 @@ fail:
#endif
#ifndef NO_memmove__Lorg_eclipse_swt_internal_mozilla_nsID_2II
+extern "C" JNIEXPORT void JNICALL XPCOM_NATIVE(memmove__Lorg_eclipse_swt_internal_mozilla_nsID_2II)(JNIEnv *env, jclass that, jobject arg0, jint arg1, jint arg2);
JNIEXPORT void JNICALL XPCOM_NATIVE(memmove__Lorg_eclipse_swt_internal_mozilla_nsID_2II)
(JNIEnv *env, jclass that, jobject arg0, jint arg1, jint arg2)
{
@@ -1987,6 +2096,7 @@ fail:
#endif
#ifndef NO_nsEmbedCString_1Length
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(nsEmbedCString_1Length)(JNIEnv *env, jclass that, jint arg0);
JNIEXPORT jint JNICALL XPCOM_NATIVE(nsEmbedCString_1Length)
(JNIEnv *env, jclass that, jint arg0)
{
@@ -1999,6 +2109,7 @@ JNIEXPORT jint JNICALL XPCOM_NATIVE(nsEmbedCString_1Length)
#endif
#ifndef NO_nsEmbedCString_1delete
+extern "C" JNIEXPORT void JNICALL XPCOM_NATIVE(nsEmbedCString_1delete)(JNIEnv *env, jclass that, jint arg0);
JNIEXPORT void JNICALL XPCOM_NATIVE(nsEmbedCString_1delete)
(JNIEnv *env, jclass that, jint arg0)
{
@@ -2009,6 +2120,7 @@ JNIEXPORT void JNICALL XPCOM_NATIVE(nsEmbedCString_1delete)
#endif
#ifndef NO_nsEmbedCString_1get
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(nsEmbedCString_1get)(JNIEnv *env, jclass that, jint arg0);
JNIEXPORT jint JNICALL XPCOM_NATIVE(nsEmbedCString_1get)
(JNIEnv *env, jclass that, jint arg0)
{
@@ -2021,6 +2133,7 @@ JNIEXPORT jint JNICALL XPCOM_NATIVE(nsEmbedCString_1get)
#endif
#ifndef NO_nsEmbedCString_1new__
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(nsEmbedCString_1new__)(JNIEnv *env, jclass that);
JNIEXPORT jint JNICALL XPCOM_NATIVE(nsEmbedCString_1new__)
(JNIEnv *env, jclass that)
{
@@ -2033,6 +2146,7 @@ JNIEXPORT jint JNICALL XPCOM_NATIVE(nsEmbedCString_1new__)
#endif
#ifndef NO_nsEmbedCString_1new___3BI
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(nsEmbedCString_1new___3BI)(JNIEnv *env, jclass that, jbyteArray arg0, jint arg1);
JNIEXPORT jint JNICALL XPCOM_NATIVE(nsEmbedCString_1new___3BI)
(JNIEnv *env, jclass that, jbyteArray arg0, jint arg1)
{
@@ -2049,6 +2163,7 @@ fail:
#endif
#ifndef NO_nsEmbedString_1Length
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(nsEmbedString_1Length)(JNIEnv *env, jclass that, jint arg0);
JNIEXPORT jint JNICALL XPCOM_NATIVE(nsEmbedString_1Length)
(JNIEnv *env, jclass that, jint arg0)
{
@@ -2061,6 +2176,7 @@ JNIEXPORT jint JNICALL XPCOM_NATIVE(nsEmbedString_1Length)
#endif
#ifndef NO_nsEmbedString_1delete
+extern "C" JNIEXPORT void JNICALL XPCOM_NATIVE(nsEmbedString_1delete)(JNIEnv *env, jclass that, jint arg0);
JNIEXPORT void JNICALL XPCOM_NATIVE(nsEmbedString_1delete)
(JNIEnv *env, jclass that, jint arg0)
{
@@ -2071,6 +2187,7 @@ JNIEXPORT void JNICALL XPCOM_NATIVE(nsEmbedString_1delete)
#endif
#ifndef NO_nsEmbedString_1get
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(nsEmbedString_1get)(JNIEnv *env, jclass that, jint arg0);
JNIEXPORT jint JNICALL XPCOM_NATIVE(nsEmbedString_1get)
(JNIEnv *env, jclass that, jint arg0)
{
@@ -2083,6 +2200,7 @@ JNIEXPORT jint JNICALL XPCOM_NATIVE(nsEmbedString_1get)
#endif
#ifndef NO_nsEmbedString_1new__
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(nsEmbedString_1new__)(JNIEnv *env, jclass that);
JNIEXPORT jint JNICALL XPCOM_NATIVE(nsEmbedString_1new__)
(JNIEnv *env, jclass that)
{
@@ -2095,6 +2213,7 @@ JNIEXPORT jint JNICALL XPCOM_NATIVE(nsEmbedString_1new__)
#endif
#ifndef NO_nsEmbedString_1new___3C
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(nsEmbedString_1new___3C)(JNIEnv *env, jclass that, jcharArray arg0);
JNIEXPORT jint JNICALL XPCOM_NATIVE(nsEmbedString_1new___3C)
(JNIEnv *env, jclass that, jcharArray arg0)
{
@@ -2111,6 +2230,7 @@ fail:
#endif
#ifndef NO_nsID_1Equals
+extern "C" JNIEXPORT jboolean JNICALL XPCOM_NATIVE(nsID_1Equals)(JNIEnv *env, jclass that, jint arg0, jint arg1);
JNIEXPORT jboolean JNICALL XPCOM_NATIVE(nsID_1Equals)
(JNIEnv *env, jclass that, jint arg0, jint arg1)
{
@@ -2123,6 +2243,7 @@ JNIEXPORT jboolean JNICALL XPCOM_NATIVE(nsID_1Equals)
#endif
#ifndef NO_nsID_1delete
+extern "C" JNIEXPORT void JNICALL XPCOM_NATIVE(nsID_1delete)(JNIEnv *env, jclass that, jint arg0);
JNIEXPORT void JNICALL XPCOM_NATIVE(nsID_1delete)
(JNIEnv *env, jclass that, jint arg0)
{
@@ -2133,6 +2254,7 @@ JNIEXPORT void JNICALL XPCOM_NATIVE(nsID_1delete)
#endif
#ifndef NO_nsID_1new
+extern "C" JNIEXPORT jint JNICALL XPCOM_NATIVE(nsID_1new)(JNIEnv *env, jclass that);
JNIEXPORT jint JNICALL XPCOM_NATIVE(nsID_1new)
(JNIEnv *env, jclass that)
{
@@ -2144,4 +2266,3 @@ JNIEXPORT jint JNICALL XPCOM_NATIVE(nsID_1new)
}
#endif
-}
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/library/xpcom_stats.h b/bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/library/xpcom_stats.h
index aedfc2d897..4b997297b5 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/library/xpcom_stats.h
+++ b/bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/library/xpcom_stats.h
@@ -16,9 +16,13 @@ extern char* XPCOM_nativeFunctionNames[];
#define XPCOM_NATIVE_ENTER(env, that, func) XPCOM_nativeFunctionCallCount[func]++;
#define XPCOM_NATIVE_EXIT(env, that, func)
#else
+#ifndef XPCOM_NATIVE_ENTER
#define XPCOM_NATIVE_ENTER(env, that, func)
+#endif
+#ifndef XPCOM_NATIVE_EXIT
#define XPCOM_NATIVE_EXIT(env, that, func)
#endif
+#endif
typedef enum {
Call_FUNC,
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/library/xpcominit.cpp b/bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/library/xpcominit.cpp
index 552142653d..e994d38cf6 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/library/xpcominit.cpp
+++ b/bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/library/xpcominit.cpp
@@ -13,11 +13,10 @@
#include "xpcominit_structs.h"
#include "xpcominit_stats.h"
-extern "C" {
-
#define XPCOMInit_NATIVE(func) Java_org_eclipse_swt_internal_mozilla_XPCOMInit_##func
#ifndef NO_GREVersionRange_1sizeof
+extern "C" JNIEXPORT jint JNICALL XPCOMInit_NATIVE(GREVersionRange_1sizeof)(JNIEnv *env, jclass that);
JNIEXPORT jint JNICALL XPCOMInit_NATIVE(GREVersionRange_1sizeof)
(JNIEnv *env, jclass that)
{
@@ -30,6 +29,7 @@ JNIEXPORT jint JNICALL XPCOMInit_NATIVE(GREVersionRange_1sizeof)
#endif
#ifndef NO_GRE_1GetGREPathWithProperties
+extern "C" JNIEXPORT jint JNICALL XPCOMInit_NATIVE(GRE_1GetGREPathWithProperties)(JNIEnv *env, jclass that, jobject arg0, jint arg1, jint arg2, jint arg3, jint arg4, jint arg5);
JNIEXPORT jint JNICALL XPCOMInit_NATIVE(GRE_1GetGREPathWithProperties)
(JNIEnv *env, jclass that, jobject arg0, jint arg1, jint arg2, jint arg3, jint arg4, jint arg5)
{
@@ -45,4 +45,3 @@ fail:
}
#endif
-}
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/library/xpcominit_stats.h b/bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/library/xpcominit_stats.h
index cc1a5c9aee..d2f7d39ae0 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/library/xpcominit_stats.h
+++ b/bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/library/xpcominit_stats.h
@@ -16,9 +16,13 @@ extern char* XPCOMInit_nativeFunctionNames[];
#define XPCOMInit_NATIVE_ENTER(env, that, func) XPCOMInit_nativeFunctionCallCount[func]++;
#define XPCOMInit_NATIVE_EXIT(env, that, func)
#else
+#ifndef XPCOMInit_NATIVE_ENTER
#define XPCOMInit_NATIVE_ENTER(env, that, func)
+#endif
+#ifndef XPCOMInit_NATIVE_EXIT
#define XPCOMInit_NATIVE_EXIT(env, that, func)
#endif
+#endif
typedef enum {
GREVersionRange_1sizeof_FUNC,
diff --git a/bundles/org.eclipse.swt/Eclipse SWT OpenGL/carbon/library/agl_stats.h b/bundles/org.eclipse.swt/Eclipse SWT OpenGL/carbon/library/agl_stats.h
index e1bc04038e..cbaff2aab0 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT OpenGL/carbon/library/agl_stats.h
+++ b/bundles/org.eclipse.swt/Eclipse SWT OpenGL/carbon/library/agl_stats.h
@@ -16,9 +16,13 @@ extern char* AGL_nativeFunctionNames[];
#define AGL_NATIVE_ENTER(env, that, func) AGL_nativeFunctionCallCount[func]++;
#define AGL_NATIVE_EXIT(env, that, func)
#else
+#ifndef AGL_NATIVE_ENTER
#define AGL_NATIVE_ENTER(env, that, func)
+#endif
+#ifndef AGL_NATIVE_EXIT
#define AGL_NATIVE_EXIT(env, that, func)
#endif
+#endif
typedef enum {
aglChoosePixelFormat_FUNC,
diff --git a/bundles/org.eclipse.swt/Eclipse SWT OpenGL/glx/library/glx_stats.h b/bundles/org.eclipse.swt/Eclipse SWT OpenGL/glx/library/glx_stats.h
index 72dc3ac078..7992227a3b 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT OpenGL/glx/library/glx_stats.h
+++ b/bundles/org.eclipse.swt/Eclipse SWT OpenGL/glx/library/glx_stats.h
@@ -16,9 +16,13 @@ extern char* GLX_nativeFunctionNames[];
#define GLX_NATIVE_ENTER(env, that, func) GLX_nativeFunctionCallCount[func]++;
#define GLX_NATIVE_EXIT(env, that, func)
#else
+#ifndef GLX_NATIVE_ENTER
#define GLX_NATIVE_ENTER(env, that, func)
+#endif
+#ifndef GLX_NATIVE_EXIT
#define GLX_NATIVE_EXIT(env, that, func)
#endif
+#endif
typedef enum {
XVisualInfo_1sizeof_FUNC,
diff --git a/bundles/org.eclipse.swt/Eclipse SWT OpenGL/win32/library/wgl_stats.h b/bundles/org.eclipse.swt/Eclipse SWT OpenGL/win32/library/wgl_stats.h
index 80e2ec8104..c9375d5afc 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT OpenGL/win32/library/wgl_stats.h
+++ b/bundles/org.eclipse.swt/Eclipse SWT OpenGL/win32/library/wgl_stats.h
@@ -16,9 +16,13 @@ extern char* WGL_nativeFunctionNames[];
#define WGL_NATIVE_ENTER(env, that, func) WGL_nativeFunctionCallCount[func]++;
#define WGL_NATIVE_EXIT(env, that, func)
#else
+#ifndef WGL_NATIVE_ENTER
#define WGL_NATIVE_ENTER(env, that, func)
+#endif
+#ifndef WGL_NATIVE_EXIT
#define WGL_NATIVE_EXIT(env, that, func)
#endif
+#endif
typedef enum {
ChoosePixelFormat_FUNC,
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/cairo/library/cairo_stats.h b/bundles/org.eclipse.swt/Eclipse SWT PI/cairo/library/cairo_stats.h
index 2f3098cb37..b0d2e8fcbf 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/cairo/library/cairo_stats.h
+++ b/bundles/org.eclipse.swt/Eclipse SWT PI/cairo/library/cairo_stats.h
@@ -26,9 +26,13 @@ extern char* Cairo_nativeFunctionNames[];
#define Cairo_NATIVE_ENTER(env, that, func) Cairo_nativeFunctionCallCount[func]++;
#define Cairo_NATIVE_EXIT(env, that, func)
#else
+#ifndef Cairo_NATIVE_ENTER
#define Cairo_NATIVE_ENTER(env, that, func)
+#endif
+#ifndef Cairo_NATIVE_EXIT
#define Cairo_NATIVE_EXIT(env, that, func)
#endif
+#endif
typedef enum {
cairo_1append_1path_FUNC,
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/carbon/library/cocoa_stats.h b/bundles/org.eclipse.swt/Eclipse SWT PI/carbon/library/cocoa_stats.h
index d3862e2f98..a05670982f 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/carbon/library/cocoa_stats.h
+++ b/bundles/org.eclipse.swt/Eclipse SWT PI/carbon/library/cocoa_stats.h
@@ -16,9 +16,13 @@ extern char* Cocoa_nativeFunctionNames[];
#define Cocoa_NATIVE_ENTER(env, that, func) Cocoa_nativeFunctionCallCount[func]++;
#define Cocoa_NATIVE_EXIT(env, that, func)
#else
+#ifndef Cocoa_NATIVE_ENTER
#define Cocoa_NATIVE_ENTER(env, that, func)
+#endif
+#ifndef Cocoa_NATIVE_EXIT
#define Cocoa_NATIVE_EXIT(env, that, func)
#endif
+#endif
typedef enum {
HICocoaViewCreate_FUNC,
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 3c557e7c37..77c7a1f914 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
@@ -16,9 +16,13 @@ extern char* OS_nativeFunctionNames[];
#define OS_NATIVE_ENTER(env, that, func) OS_nativeFunctionCallCount[func]++;
#define OS_NATIVE_EXIT(env, that, func)
#else
+#ifndef OS_NATIVE_ENTER
#define OS_NATIVE_ENTER(env, that, func)
+#endif
+#ifndef OS_NATIVE_EXIT
#define OS_NATIVE_EXIT(env, that, func)
#endif
+#endif
typedef enum {
AECountItems_FUNC,
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/common/library/c_stats.h b/bundles/org.eclipse.swt/Eclipse SWT PI/common/library/c_stats.h
index 2e05f2c78f..6029dc7971 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/common/library/c_stats.h
+++ b/bundles/org.eclipse.swt/Eclipse SWT PI/common/library/c_stats.h
@@ -16,9 +16,13 @@ extern char* C_nativeFunctionNames[];
#define C_NATIVE_ENTER(env, that, func) C_nativeFunctionCallCount[func]++;
#define C_NATIVE_EXIT(env, that, func)
#else
+#ifndef C_NATIVE_ENTER
#define C_NATIVE_ENTER(env, that, func)
+#endif
+#ifndef C_NATIVE_EXIT
#define C_NATIVE_EXIT(env, that, func)
#endif
+#endif
typedef enum {
PTR_1sizeof_FUNC,
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/atk_stats.h b/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/atk_stats.h
index b7b5fab147..17ee14a6a1 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/atk_stats.h
+++ b/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/atk_stats.h
@@ -20,9 +20,13 @@ extern char* ATK_nativeFunctionNames[];
#define ATK_NATIVE_ENTER(env, that, func) ATK_nativeFunctionCallCount[func]++;
#define ATK_NATIVE_EXIT(env, that, func)
#else
+#ifndef ATK_NATIVE_ENTER
#define ATK_NATIVE_ENTER(env, that, func)
+#endif
+#ifndef ATK_NATIVE_EXIT
#define ATK_NATIVE_EXIT(env, that, func)
#endif
+#endif
typedef enum {
AtkObjectFactoryClass_1sizeof_FUNC,
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/os_stats.h b/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/os_stats.h
index b74f8bc5e7..29cde21324 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/os_stats.h
+++ b/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/os_stats.h
@@ -20,9 +20,13 @@ extern char* OS_nativeFunctionNames[];
#define OS_NATIVE_ENTER(env, that, func) OS_nativeFunctionCallCount[func]++;
#define OS_NATIVE_EXIT(env, that, func)
#else
+#ifndef OS_NATIVE_ENTER
#define OS_NATIVE_ENTER(env, that, func)
+#endif
+#ifndef OS_NATIVE_EXIT
#define OS_NATIVE_EXIT(env, that, func)
#endif
+#endif
typedef enum {
Call_FUNC,
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/motif/library/os_stats.h b/bundles/org.eclipse.swt/Eclipse SWT PI/motif/library/os_stats.h
index fef0734f2b..bd0e946067 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/motif/library/os_stats.h
+++ b/bundles/org.eclipse.swt/Eclipse SWT PI/motif/library/os_stats.h
@@ -16,9 +16,13 @@ extern char* OS_nativeFunctionNames[];
#define OS_NATIVE_ENTER(env, that, func) OS_nativeFunctionCallCount[func]++;
#define OS_NATIVE_EXIT(env, that, func)
#else
+#ifndef OS_NATIVE_ENTER
#define OS_NATIVE_ENTER(env, that, func)
+#endif
+#ifndef OS_NATIVE_EXIT
#define OS_NATIVE_EXIT(env, that, func)
#endif
+#endif
typedef enum {
CODESET_FUNC,
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/motif_gtk/library/gtk_stats.h b/bundles/org.eclipse.swt/Eclipse SWT PI/motif_gtk/library/gtk_stats.h
index a044750d48..ca48aacb4d 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/motif_gtk/library/gtk_stats.h
+++ b/bundles/org.eclipse.swt/Eclipse SWT PI/motif_gtk/library/gtk_stats.h
@@ -20,9 +20,13 @@ extern char* GTK_nativeFunctionNames[];
#define GTK_NATIVE_ENTER(env, that, func) GTK_nativeFunctionCallCount[func]++;
#define GTK_NATIVE_EXIT(env, that, func)
#else
+#ifndef GTK_NATIVE_ENTER
#define GTK_NATIVE_ENTER(env, that, func)
+#endif
+#ifndef GTK_NATIVE_EXIT
#define GTK_NATIVE_EXIT(env, that, func)
#endif
+#endif
typedef enum {
_1GTK_1WIDGET_1HEIGHT_FUNC,
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/photon/library/os_stats.h b/bundles/org.eclipse.swt/Eclipse SWT PI/photon/library/os_stats.h
index dcbb664e68..e4dbe25938 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/photon/library/os_stats.h
+++ b/bundles/org.eclipse.swt/Eclipse SWT PI/photon/library/os_stats.h
@@ -16,9 +16,13 @@ extern char* OS_nativeFunctionNames[];
#define OS_NATIVE_ENTER(env, that, func) OS_nativeFunctionCallCount[func]++;
#define OS_NATIVE_EXIT(env, that, func)
#else
+#ifndef OS_NATIVE_ENTER
#define OS_NATIVE_ENTER(env, that, func)
+#endif
+#ifndef OS_NATIVE_EXIT
#define OS_NATIVE_EXIT(env, that, func)
#endif
+#endif
typedef enum {
PfDecomposeStemToID_FUNC,
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/win32/library/com_stats.h b/bundles/org.eclipse.swt/Eclipse SWT PI/win32/library/com_stats.h
index 7c9e3c897d..20191c8664 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/win32/library/com_stats.h
+++ b/bundles/org.eclipse.swt/Eclipse SWT PI/win32/library/com_stats.h
@@ -16,9 +16,13 @@ extern char* COM_nativeFunctionNames[];
#define COM_NATIVE_ENTER(env, that, func) COM_nativeFunctionCallCount[func]++;
#define COM_NATIVE_EXIT(env, that, func)
#else
+#ifndef COM_NATIVE_ENTER
#define COM_NATIVE_ENTER(env, that, func)
+#endif
+#ifndef COM_NATIVE_EXIT
#define COM_NATIVE_EXIT(env, that, func)
#endif
+#endif
typedef enum {
CAUUID_1sizeof_FUNC,
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/win32/library/gdip.cpp b/bundles/org.eclipse.swt/Eclipse SWT PI/win32/library/gdip.cpp
index 872dba02d2..84fafd6d3d 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/win32/library/gdip.cpp
+++ b/bundles/org.eclipse.swt/Eclipse SWT PI/win32/library/gdip.cpp
@@ -13,11 +13,10 @@
#include "gdip_structs.h"
#include "gdip_stats.h"
-extern "C" {
-
#define Gdip_NATIVE(func) Java_org_eclipse_swt_internal_gdip_Gdip_##func
#ifndef NO_BitmapData_1delete
+extern "C" JNIEXPORT void JNICALL Gdip_NATIVE(BitmapData_1delete)(JNIEnv *env, jclass that, jint arg0);
JNIEXPORT void JNICALL Gdip_NATIVE(BitmapData_1delete)
(JNIEnv *env, jclass that, jint arg0)
{
@@ -28,6 +27,7 @@ JNIEXPORT void JNICALL Gdip_NATIVE(BitmapData_1delete)
#endif
#ifndef NO_BitmapData_1new
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(BitmapData_1new)(JNIEnv *env, jclass that);
JNIEXPORT jint JNICALL Gdip_NATIVE(BitmapData_1new)
(JNIEnv *env, jclass that)
{
@@ -40,6 +40,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(BitmapData_1new)
#endif
#ifndef NO_Bitmap_1GetHBITMAP
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Bitmap_1GetHBITMAP)(JNIEnv *env, jclass that, jint arg0, jint arg1, jintArray arg2);
JNIEXPORT jint JNICALL Gdip_NATIVE(Bitmap_1GetHBITMAP)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jintArray arg2)
{
@@ -56,6 +57,7 @@ fail:
#endif
#ifndef NO_Bitmap_1GetHICON
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Bitmap_1GetHICON)(JNIEnv *env, jclass that, jint arg0, jintArray arg1);
JNIEXPORT jint JNICALL Gdip_NATIVE(Bitmap_1GetHICON)
(JNIEnv *env, jclass that, jint arg0, jintArray arg1)
{
@@ -72,6 +74,7 @@ fail:
#endif
#ifndef NO_Bitmap_1LockBits
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Bitmap_1LockBits)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3, jint arg4);
JNIEXPORT jint JNICALL Gdip_NATIVE(Bitmap_1LockBits)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3, jint arg4)
{
@@ -84,6 +87,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(Bitmap_1LockBits)
#endif
#ifndef NO_Bitmap_1UnlockBits
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Bitmap_1UnlockBits)(JNIEnv *env, jclass that, jint arg0, jint arg1);
JNIEXPORT jint JNICALL Gdip_NATIVE(Bitmap_1UnlockBits)
(JNIEnv *env, jclass that, jint arg0, jint arg1)
{
@@ -96,6 +100,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(Bitmap_1UnlockBits)
#endif
#ifndef NO_Bitmap_1delete
+extern "C" JNIEXPORT void JNICALL Gdip_NATIVE(Bitmap_1delete)(JNIEnv *env, jclass that, jint arg0);
JNIEXPORT void JNICALL Gdip_NATIVE(Bitmap_1delete)
(JNIEnv *env, jclass that, jint arg0)
{
@@ -106,6 +111,7 @@ JNIEXPORT void JNICALL Gdip_NATIVE(Bitmap_1delete)
#endif
#ifndef NO_Bitmap_1new__I
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Bitmap_1new__I)(JNIEnv *env, jclass that, jint arg0);
JNIEXPORT jint JNICALL Gdip_NATIVE(Bitmap_1new__I)
(JNIEnv *env, jclass that, jint arg0)
{
@@ -118,6 +124,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(Bitmap_1new__I)
#endif
#ifndef NO_Bitmap_1new__II
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Bitmap_1new__II)(JNIEnv *env, jclass that, jint arg0, jint arg1);
JNIEXPORT jint JNICALL Gdip_NATIVE(Bitmap_1new__II)
(JNIEnv *env, jclass that, jint arg0, jint arg1)
{
@@ -130,6 +137,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(Bitmap_1new__II)
#endif
#ifndef NO_Bitmap_1new__IIIII
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Bitmap_1new__IIIII)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3, jint arg4);
JNIEXPORT jint JNICALL Gdip_NATIVE(Bitmap_1new__IIIII)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3, jint arg4)
{
@@ -142,6 +150,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(Bitmap_1new__IIIII)
#endif
#ifndef NO_Bitmap_1new___3CZ
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Bitmap_1new___3CZ)(JNIEnv *env, jclass that, jcharArray arg0, jboolean arg1);
JNIEXPORT jint JNICALL Gdip_NATIVE(Bitmap_1new___3CZ)
(JNIEnv *env, jclass that, jcharArray arg0, jboolean arg1)
{
@@ -158,6 +167,7 @@ fail:
#endif
#ifndef NO_Brush_1Clone
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Brush_1Clone)(JNIEnv *env, jclass that, jint arg0);
JNIEXPORT jint JNICALL Gdip_NATIVE(Brush_1Clone)
(JNIEnv *env, jclass that, jint arg0)
{
@@ -170,6 +180,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(Brush_1Clone)
#endif
#ifndef NO_Brush_1GetType
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Brush_1GetType)(JNIEnv *env, jclass that, jint arg0);
JNIEXPORT jint JNICALL Gdip_NATIVE(Brush_1GetType)
(JNIEnv *env, jclass that, jint arg0)
{
@@ -182,6 +193,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(Brush_1GetType)
#endif
#ifndef NO_ColorPalette_1sizeof
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(ColorPalette_1sizeof)(JNIEnv *env, jclass that);
JNIEXPORT jint JNICALL Gdip_NATIVE(ColorPalette_1sizeof)
(JNIEnv *env, jclass that)
{
@@ -194,6 +206,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(ColorPalette_1sizeof)
#endif
#ifndef NO_Color_1delete
+extern "C" JNIEXPORT void JNICALL Gdip_NATIVE(Color_1delete)(JNIEnv *env, jclass that, jint arg0);
JNIEXPORT void JNICALL Gdip_NATIVE(Color_1delete)
(JNIEnv *env, jclass that, jint arg0)
{
@@ -204,6 +217,7 @@ JNIEXPORT void JNICALL Gdip_NATIVE(Color_1delete)
#endif
#ifndef NO_Color_1new
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Color_1new)(JNIEnv *env, jclass that, jint arg0);
JNIEXPORT jint JNICALL Gdip_NATIVE(Color_1new)
(JNIEnv *env, jclass that, jint arg0)
{
@@ -216,6 +230,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(Color_1new)
#endif
#ifndef NO_FontFamily_1GetFamilyName
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(FontFamily_1GetFamilyName)(JNIEnv *env, jclass that, jint arg0, jcharArray arg1, jchar arg2);
JNIEXPORT jint JNICALL Gdip_NATIVE(FontFamily_1GetFamilyName)
(JNIEnv *env, jclass that, jint arg0, jcharArray arg1, jchar arg2)
{
@@ -232,6 +247,7 @@ fail:
#endif
#ifndef NO_FontFamily_1delete
+extern "C" JNIEXPORT void JNICALL Gdip_NATIVE(FontFamily_1delete)(JNIEnv *env, jclass that, jint arg0);
JNIEXPORT void JNICALL Gdip_NATIVE(FontFamily_1delete)
(JNIEnv *env, jclass that, jint arg0)
{
@@ -242,6 +258,7 @@ JNIEXPORT void JNICALL Gdip_NATIVE(FontFamily_1delete)
#endif
#ifndef NO_FontFamily_1new
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(FontFamily_1new)(JNIEnv *env, jclass that);
JNIEXPORT jint JNICALL Gdip_NATIVE(FontFamily_1new)
(JNIEnv *env, jclass that)
{
@@ -254,6 +271,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(FontFamily_1new)
#endif
#ifndef NO_Font_1GetFamily
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Font_1GetFamily)(JNIEnv *env, jclass that, jint arg0, jint arg1);
JNIEXPORT jint JNICALL Gdip_NATIVE(Font_1GetFamily)
(JNIEnv *env, jclass that, jint arg0, jint arg1)
{
@@ -266,6 +284,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(Font_1GetFamily)
#endif
#ifndef NO_Font_1GetSize
+extern "C" JNIEXPORT jfloat JNICALL Gdip_NATIVE(Font_1GetSize)(JNIEnv *env, jclass that, jint arg0);
JNIEXPORT jfloat JNICALL Gdip_NATIVE(Font_1GetSize)
(JNIEnv *env, jclass that, jint arg0)
{
@@ -278,6 +297,7 @@ JNIEXPORT jfloat JNICALL Gdip_NATIVE(Font_1GetSize)
#endif
#ifndef NO_Font_1GetStyle
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Font_1GetStyle)(JNIEnv *env, jclass that, jint arg0);
JNIEXPORT jint JNICALL Gdip_NATIVE(Font_1GetStyle)
(JNIEnv *env, jclass that, jint arg0)
{
@@ -290,6 +310,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(Font_1GetStyle)
#endif
#ifndef NO_Font_1IsAvailable
+extern "C" JNIEXPORT jboolean JNICALL Gdip_NATIVE(Font_1IsAvailable)(JNIEnv *env, jclass that, jint arg0);
JNIEXPORT jboolean JNICALL Gdip_NATIVE(Font_1IsAvailable)
(JNIEnv *env, jclass that, jint arg0)
{
@@ -302,6 +323,7 @@ JNIEXPORT jboolean JNICALL Gdip_NATIVE(Font_1IsAvailable)
#endif
#ifndef NO_Font_1delete
+extern "C" JNIEXPORT void JNICALL Gdip_NATIVE(Font_1delete)(JNIEnv *env, jclass that, jint arg0);
JNIEXPORT void JNICALL Gdip_NATIVE(Font_1delete)
(JNIEnv *env, jclass that, jint arg0)
{
@@ -312,6 +334,7 @@ JNIEXPORT void JNICALL Gdip_NATIVE(Font_1delete)
#endif
#ifndef NO_Font_1new__II
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Font_1new__II)(JNIEnv *env, jclass that, jint arg0, jint arg1);
JNIEXPORT jint JNICALL Gdip_NATIVE(Font_1new__II)
(JNIEnv *env, jclass that, jint arg0, jint arg1)
{
@@ -324,6 +347,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(Font_1new__II)
#endif
#ifndef NO_Font_1new___3CFIII
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Font_1new___3CFIII)(JNIEnv *env, jclass that, jcharArray arg0, jfloat arg1, jint arg2, jint arg3, jint arg4);
JNIEXPORT jint JNICALL Gdip_NATIVE(Font_1new___3CFIII)
(JNIEnv *env, jclass that, jcharArray arg0, jfloat arg1, jint arg2, jint arg3, jint arg4)
{
@@ -340,6 +364,7 @@ fail:
#endif
#ifndef NO_GdiplusShutdown
+extern "C" JNIEXPORT void JNICALL Gdip_NATIVE(GdiplusShutdown)(JNIEnv *env, jclass that, jint arg0);
JNIEXPORT void JNICALL Gdip_NATIVE(GdiplusShutdown)
(JNIEnv *env, jclass that, jint arg0)
{
@@ -350,6 +375,7 @@ JNIEXPORT void JNICALL Gdip_NATIVE(GdiplusShutdown)
#endif
#ifndef NO_GdiplusStartup
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(GdiplusStartup)(JNIEnv *env, jclass that, jintArray arg0, jobject arg1, jint arg2);
JNIEXPORT jint JNICALL Gdip_NATIVE(GdiplusStartup)
(JNIEnv *env, jclass that, jintArray arg0, jobject arg1, jint arg2)
{
@@ -369,6 +395,7 @@ fail:
#endif
#ifndef NO_GdiplusStartupInput_1sizeof
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(GdiplusStartupInput_1sizeof)(JNIEnv *env, jclass that);
JNIEXPORT jint JNICALL Gdip_NATIVE(GdiplusStartupInput_1sizeof)
(JNIEnv *env, jclass that)
{
@@ -381,6 +408,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(GdiplusStartupInput_1sizeof)
#endif
#ifndef NO_GraphicsPath_1AddArc
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(GraphicsPath_1AddArc)(JNIEnv *env, jclass that, jint arg0, jfloat arg1, jfloat arg2, jfloat arg3, jfloat arg4, jfloat arg5, jfloat arg6);
JNIEXPORT jint JNICALL Gdip_NATIVE(GraphicsPath_1AddArc)
(JNIEnv *env, jclass that, jint arg0, jfloat arg1, jfloat arg2, jfloat arg3, jfloat arg4, jfloat arg5, jfloat arg6)
{
@@ -393,6 +421,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(GraphicsPath_1AddArc)
#endif
#ifndef NO_GraphicsPath_1AddBezier
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(GraphicsPath_1AddBezier)(JNIEnv *env, jclass that, jint arg0, jfloat arg1, jfloat arg2, jfloat arg3, jfloat arg4, jfloat arg5, jfloat arg6, jfloat arg7, jfloat arg8);
JNIEXPORT jint JNICALL Gdip_NATIVE(GraphicsPath_1AddBezier)
(JNIEnv *env, jclass that, jint arg0, jfloat arg1, jfloat arg2, jfloat arg3, jfloat arg4, jfloat arg5, jfloat arg6, jfloat arg7, jfloat arg8)
{
@@ -405,6 +434,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(GraphicsPath_1AddBezier)
#endif
#ifndef NO_GraphicsPath_1AddLine
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(GraphicsPath_1AddLine)(JNIEnv *env, jclass that, jint arg0, jfloat arg1, jfloat arg2, jfloat arg3, jfloat arg4);
JNIEXPORT jint JNICALL Gdip_NATIVE(GraphicsPath_1AddLine)
(JNIEnv *env, jclass that, jint arg0, jfloat arg1, jfloat arg2, jfloat arg3, jfloat arg4)
{
@@ -417,6 +447,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(GraphicsPath_1AddLine)
#endif
#ifndef NO_GraphicsPath_1AddPath
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(GraphicsPath_1AddPath)(JNIEnv *env, jclass that, jint arg0, jint arg1, jboolean arg2);
JNIEXPORT jint JNICALL Gdip_NATIVE(GraphicsPath_1AddPath)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jboolean arg2)
{
@@ -429,6 +460,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(GraphicsPath_1AddPath)
#endif
#ifndef NO_GraphicsPath_1AddRectangle
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(GraphicsPath_1AddRectangle)(JNIEnv *env, jclass that, jint arg0, jobject arg1);
JNIEXPORT jint JNICALL Gdip_NATIVE(GraphicsPath_1AddRectangle)
(JNIEnv *env, jclass that, jint arg0, jobject arg1)
{
@@ -445,6 +477,7 @@ fail:
#endif
#ifndef NO_GraphicsPath_1AddString
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(GraphicsPath_1AddString)(JNIEnv *env, jclass that, jint arg0, jcharArray arg1, jint arg2, jint arg3, jint arg4, jfloat arg5, jobject arg6, jint arg7);
JNIEXPORT jint JNICALL Gdip_NATIVE(GraphicsPath_1AddString)
(JNIEnv *env, jclass that, jint arg0, jcharArray arg1, jint arg2, jint arg3, jint arg4, jfloat arg5, jobject arg6, jint arg7)
{
@@ -464,6 +497,7 @@ fail:
#endif
#ifndef NO_GraphicsPath_1CloseFigure
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(GraphicsPath_1CloseFigure)(JNIEnv *env, jclass that, jint arg0);
JNIEXPORT jint JNICALL Gdip_NATIVE(GraphicsPath_1CloseFigure)
(JNIEnv *env, jclass that, jint arg0)
{
@@ -476,6 +510,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(GraphicsPath_1CloseFigure)
#endif
#ifndef NO_GraphicsPath_1Flatten
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(GraphicsPath_1Flatten)(JNIEnv *env, jclass that, jint arg0, jint arg1, jfloat arg2);
JNIEXPORT jint JNICALL Gdip_NATIVE(GraphicsPath_1Flatten)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jfloat arg2)
{
@@ -488,6 +523,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(GraphicsPath_1Flatten)
#endif
#ifndef NO_GraphicsPath_1GetBounds
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(GraphicsPath_1GetBounds)(JNIEnv *env, jclass that, jint arg0, jobject arg1, jint arg2, jint arg3);
JNIEXPORT jint JNICALL Gdip_NATIVE(GraphicsPath_1GetBounds)
(JNIEnv *env, jclass that, jint arg0, jobject arg1, jint arg2, jint arg3)
{
@@ -504,6 +540,7 @@ fail:
#endif
#ifndef NO_GraphicsPath_1GetLastPoint
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(GraphicsPath_1GetLastPoint)(JNIEnv *env, jclass that, jint arg0, jobject arg1);
JNIEXPORT jint JNICALL Gdip_NATIVE(GraphicsPath_1GetLastPoint)
(JNIEnv *env, jclass that, jint arg0, jobject arg1)
{
@@ -520,6 +557,7 @@ fail:
#endif
#ifndef NO_GraphicsPath_1GetPathTypes
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(GraphicsPath_1GetPathTypes)(JNIEnv *env, jclass that, jint arg0, jbyteArray arg1, jint arg2);
JNIEXPORT jint JNICALL Gdip_NATIVE(GraphicsPath_1GetPathTypes)
(JNIEnv *env, jclass that, jint arg0, jbyteArray arg1, jint arg2)
{
@@ -536,6 +574,7 @@ fail:
#endif
#ifndef NO_GraphicsPath_1GetPointCount
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(GraphicsPath_1GetPointCount)(JNIEnv *env, jclass that, jint arg0);
JNIEXPORT jint JNICALL Gdip_NATIVE(GraphicsPath_1GetPointCount)
(JNIEnv *env, jclass that, jint arg0)
{
@@ -548,6 +587,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(GraphicsPath_1GetPointCount)
#endif
#ifndef NO_GraphicsPath_1IsOutlineVisible
+extern "C" JNIEXPORT jboolean JNICALL Gdip_NATIVE(GraphicsPath_1IsOutlineVisible)(JNIEnv *env, jclass that, jint arg0, jfloat arg1, jfloat arg2, jint arg3, jint arg4);
JNIEXPORT jboolean JNICALL Gdip_NATIVE(GraphicsPath_1IsOutlineVisible)
(JNIEnv *env, jclass that, jint arg0, jfloat arg1, jfloat arg2, jint arg3, jint arg4)
{
@@ -560,6 +600,7 @@ JNIEXPORT jboolean JNICALL Gdip_NATIVE(GraphicsPath_1IsOutlineVisible)
#endif
#ifndef NO_GraphicsPath_1IsVisible
+extern "C" JNIEXPORT jboolean JNICALL Gdip_NATIVE(GraphicsPath_1IsVisible)(JNIEnv *env, jclass that, jint arg0, jfloat arg1, jfloat arg2, jint arg3);
JNIEXPORT jboolean JNICALL Gdip_NATIVE(GraphicsPath_1IsVisible)
(JNIEnv *env, jclass that, jint arg0, jfloat arg1, jfloat arg2, jint arg3)
{
@@ -572,6 +613,7 @@ JNIEXPORT jboolean JNICALL Gdip_NATIVE(GraphicsPath_1IsVisible)
#endif
#ifndef NO_GraphicsPath_1SetFillMode
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(GraphicsPath_1SetFillMode)(JNIEnv *env, jclass that, jint arg0, jint arg1);
JNIEXPORT jint JNICALL Gdip_NATIVE(GraphicsPath_1SetFillMode)
(JNIEnv *env, jclass that, jint arg0, jint arg1)
{
@@ -584,6 +626,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(GraphicsPath_1SetFillMode)
#endif
#ifndef NO_GraphicsPath_1StartFigure
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(GraphicsPath_1StartFigure)(JNIEnv *env, jclass that, jint arg0);
JNIEXPORT jint JNICALL Gdip_NATIVE(GraphicsPath_1StartFigure)
(JNIEnv *env, jclass that, jint arg0)
{
@@ -596,6 +639,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(GraphicsPath_1StartFigure)
#endif
#ifndef NO_GraphicsPath_1Transform
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(GraphicsPath_1Transform)(JNIEnv *env, jclass that, jint arg0, jint arg1);
JNIEXPORT jint JNICALL Gdip_NATIVE(GraphicsPath_1Transform)
(JNIEnv *env, jclass that, jint arg0, jint arg1)
{
@@ -608,6 +652,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(GraphicsPath_1Transform)
#endif
#ifndef NO_GraphicsPath_1delete
+extern "C" JNIEXPORT void JNICALL Gdip_NATIVE(GraphicsPath_1delete)(JNIEnv *env, jclass that, jint arg0);
JNIEXPORT void JNICALL Gdip_NATIVE(GraphicsPath_1delete)
(JNIEnv *env, jclass that, jint arg0)
{
@@ -618,6 +663,7 @@ JNIEXPORT void JNICALL Gdip_NATIVE(GraphicsPath_1delete)
#endif
#ifndef NO_GraphicsPath_1new__I
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(GraphicsPath_1new__I)(JNIEnv *env, jclass that, jint arg0);
JNIEXPORT jint JNICALL Gdip_NATIVE(GraphicsPath_1new__I)
(JNIEnv *env, jclass that, jint arg0)
{
@@ -630,6 +676,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(GraphicsPath_1new__I)
#endif
#ifndef NO_Graphics_1DrawArc
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1DrawArc)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3, jint arg4, jint arg5, jfloat arg6, jfloat arg7);
JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1DrawArc)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3, jint arg4, jint arg5, jfloat arg6, jfloat arg7)
{
@@ -642,6 +689,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1DrawArc)
#endif
#ifndef NO_Graphics_1DrawEllipse
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1DrawEllipse)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3, jint arg4, jint arg5);
JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1DrawEllipse)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3, jint arg4, jint arg5)
{
@@ -654,6 +702,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1DrawEllipse)
#endif
#ifndef NO_Graphics_1DrawImage__IIII
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1DrawImage__IIII)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3);
JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1DrawImage__IIII)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3)
{
@@ -666,6 +715,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1DrawImage__IIII)
#endif
#ifndef NO_Graphics_1DrawImage__IILorg_eclipse_swt_internal_gdip_Rect_2IIIIIIII
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1DrawImage__IILorg_eclipse_swt_internal_gdip_Rect_2IIIIIIII)(JNIEnv *env, jclass that, jint arg0, jint arg1, jobject arg2, jint arg3, jint arg4, jint arg5, jint arg6, jint arg7, jint arg8, jint arg9, jint arg10);
JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1DrawImage__IILorg_eclipse_swt_internal_gdip_Rect_2IIIIIIII)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jobject arg2, jint arg3, jint arg4, jint arg5, jint arg6, jint arg7, jint arg8, jint arg9, jint arg10)
{
@@ -682,6 +732,7 @@ fail:
#endif
#ifndef NO_Graphics_1DrawLine
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1DrawLine)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3, jint arg4, jint arg5);
JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1DrawLine)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3, jint arg4, jint arg5)
{
@@ -694,6 +745,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1DrawLine)
#endif
#ifndef NO_Graphics_1DrawPath
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1DrawPath)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2);
JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1DrawPath)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2)
{
@@ -706,6 +758,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1DrawPath)
#endif
#ifndef NO_Graphics_1DrawRectangle
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1DrawRectangle)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3, jint arg4, jint arg5);
JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1DrawRectangle)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3, jint arg4, jint arg5)
{
@@ -718,6 +771,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1DrawRectangle)
#endif
#ifndef NO_Graphics_1DrawString__I_3CIILorg_eclipse_swt_internal_gdip_PointF_2I
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1DrawString__I_3CIILorg_eclipse_swt_internal_gdip_PointF_2I)(JNIEnv *env, jclass that, jint arg0, jcharArray arg1, jint arg2, jint arg3, jobject arg4, jint arg5);
JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1DrawString__I_3CIILorg_eclipse_swt_internal_gdip_PointF_2I)
(JNIEnv *env, jclass that, jint arg0, jcharArray arg1, jint arg2, jint arg3, jobject arg4, jint arg5)
{
@@ -737,6 +791,7 @@ fail:
#endif
#ifndef NO_Graphics_1DrawString__I_3CIILorg_eclipse_swt_internal_gdip_PointF_2II
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1DrawString__I_3CIILorg_eclipse_swt_internal_gdip_PointF_2II)(JNIEnv *env, jclass that, jint arg0, jcharArray arg1, jint arg2, jint arg3, jobject arg4, jint arg5, jint arg6);
JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1DrawString__I_3CIILorg_eclipse_swt_internal_gdip_PointF_2II)
(JNIEnv *env, jclass that, jint arg0, jcharArray arg1, jint arg2, jint arg3, jobject arg4, jint arg5, jint arg6)
{
@@ -756,6 +811,7 @@ fail:
#endif
#ifndef NO_Graphics_1FillEllipse
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1FillEllipse)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3, jint arg4, jint arg5);
JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1FillEllipse)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3, jint arg4, jint arg5)
{
@@ -768,6 +824,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1FillEllipse)
#endif
#ifndef NO_Graphics_1FillPath
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1FillPath)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2);
JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1FillPath)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2)
{
@@ -780,6 +837,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1FillPath)
#endif
#ifndef NO_Graphics_1FillPie
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1FillPie)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3, jint arg4, jint arg5, jfloat arg6, jfloat arg7);
JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1FillPie)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3, jint arg4, jint arg5, jfloat arg6, jfloat arg7)
{
@@ -792,6 +850,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1FillPie)
#endif
#ifndef NO_Graphics_1FillRectangle
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1FillRectangle)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3, jint arg4, jint arg5);
JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1FillRectangle)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3, jint arg4, jint arg5)
{
@@ -804,6 +863,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1FillRectangle)
#endif
#ifndef NO_Graphics_1Flush
+extern "C" JNIEXPORT void JNICALL Gdip_NATIVE(Graphics_1Flush)(JNIEnv *env, jclass that, jint arg0, jint arg1);
JNIEXPORT void JNICALL Gdip_NATIVE(Graphics_1Flush)
(JNIEnv *env, jclass that, jint arg0, jint arg1)
{
@@ -814,6 +874,7 @@ JNIEXPORT void JNICALL Gdip_NATIVE(Graphics_1Flush)
#endif
#ifndef NO_Graphics_1GetClip
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1GetClip)(JNIEnv *env, jclass that, jint arg0, jint arg1);
JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1GetClip)
(JNIEnv *env, jclass that, jint arg0, jint arg1)
{
@@ -826,6 +887,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1GetClip)
#endif
#ifndef NO_Graphics_1GetClipBounds__ILorg_eclipse_swt_internal_gdip_RectF_2
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1GetClipBounds__ILorg_eclipse_swt_internal_gdip_RectF_2)(JNIEnv *env, jclass that, jint arg0, jobject arg1);
JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1GetClipBounds__ILorg_eclipse_swt_internal_gdip_RectF_2)
(JNIEnv *env, jclass that, jint arg0, jobject arg1)
{
@@ -842,6 +904,7 @@ fail:
#endif
#ifndef NO_Graphics_1GetClipBounds__ILorg_eclipse_swt_internal_gdip_Rect_2
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1GetClipBounds__ILorg_eclipse_swt_internal_gdip_Rect_2)(JNIEnv *env, jclass that, jint arg0, jobject arg1);
JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1GetClipBounds__ILorg_eclipse_swt_internal_gdip_Rect_2)
(JNIEnv *env, jclass that, jint arg0, jobject arg1)
{
@@ -858,6 +921,7 @@ fail:
#endif
#ifndef NO_Graphics_1GetHDC
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1GetHDC)(JNIEnv *env, jclass that, jint arg0);
JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1GetHDC)
(JNIEnv *env, jclass that, jint arg0)
{
@@ -870,6 +934,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1GetHDC)
#endif
#ifndef NO_Graphics_1GetInterpolationMode
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1GetInterpolationMode)(JNIEnv *env, jclass that, jint arg0);
JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1GetInterpolationMode)
(JNIEnv *env, jclass that, jint arg0)
{
@@ -882,6 +947,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1GetInterpolationMode)
#endif
#ifndef NO_Graphics_1GetSmoothingMode
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1GetSmoothingMode)(JNIEnv *env, jclass that, jint arg0);
JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1GetSmoothingMode)
(JNIEnv *env, jclass that, jint arg0)
{
@@ -894,6 +960,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1GetSmoothingMode)
#endif
#ifndef NO_Graphics_1GetTextRenderingHint
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1GetTextRenderingHint)(JNIEnv *env, jclass that, jint arg0);
JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1GetTextRenderingHint)
(JNIEnv *env, jclass that, jint arg0)
{
@@ -906,6 +973,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1GetTextRenderingHint)
#endif
#ifndef NO_Graphics_1GetTransform
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1GetTransform)(JNIEnv *env, jclass that, jint arg0, jint arg1);
JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1GetTransform)
(JNIEnv *env, jclass that, jint arg0, jint arg1)
{
@@ -918,6 +986,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1GetTransform)
#endif
#ifndef NO_Graphics_1GetVisibleClipBounds
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1GetVisibleClipBounds)(JNIEnv *env, jclass that, jint arg0, jobject arg1);
JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1GetVisibleClipBounds)
(JNIEnv *env, jclass that, jint arg0, jobject arg1)
{
@@ -934,6 +1003,7 @@ fail:
#endif
#ifndef NO_Graphics_1MeasureString__I_3CIILorg_eclipse_swt_internal_gdip_PointF_2ILorg_eclipse_swt_internal_gdip_RectF_2
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1MeasureString__I_3CIILorg_eclipse_swt_internal_gdip_PointF_2ILorg_eclipse_swt_internal_gdip_RectF_2)(JNIEnv *env, jclass that, jint arg0, jcharArray arg1, jint arg2, jint arg3, jobject arg4, jint arg5, jobject arg6);
JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1MeasureString__I_3CIILorg_eclipse_swt_internal_gdip_PointF_2ILorg_eclipse_swt_internal_gdip_RectF_2)
(JNIEnv *env, jclass that, jint arg0, jcharArray arg1, jint arg2, jint arg3, jobject arg4, jint arg5, jobject arg6)
{
@@ -956,6 +1026,7 @@ fail:
#endif
#ifndef NO_Graphics_1MeasureString__I_3CIILorg_eclipse_swt_internal_gdip_PointF_2Lorg_eclipse_swt_internal_gdip_RectF_2
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1MeasureString__I_3CIILorg_eclipse_swt_internal_gdip_PointF_2Lorg_eclipse_swt_internal_gdip_RectF_2)(JNIEnv *env, jclass that, jint arg0, jcharArray arg1, jint arg2, jint arg3, jobject arg4, jobject arg5);
JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1MeasureString__I_3CIILorg_eclipse_swt_internal_gdip_PointF_2Lorg_eclipse_swt_internal_gdip_RectF_2)
(JNIEnv *env, jclass that, jint arg0, jcharArray arg1, jint arg2, jint arg3, jobject arg4, jobject arg5)
{
@@ -978,6 +1049,7 @@ fail:
#endif
#ifndef NO_Graphics_1ReleaseHDC
+extern "C" JNIEXPORT void JNICALL Gdip_NATIVE(Graphics_1ReleaseHDC)(JNIEnv *env, jclass that, jint arg0, jint arg1);
JNIEXPORT void JNICALL Gdip_NATIVE(Graphics_1ReleaseHDC)
(JNIEnv *env, jclass that, jint arg0, jint arg1)
{
@@ -988,6 +1060,7 @@ JNIEXPORT void JNICALL Gdip_NATIVE(Graphics_1ReleaseHDC)
#endif
#ifndef NO_Graphics_1ResetClip
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1ResetClip)(JNIEnv *env, jclass that, jint arg0);
JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1ResetClip)
(JNIEnv *env, jclass that, jint arg0)
{
@@ -1000,6 +1073,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1ResetClip)
#endif
#ifndef NO_Graphics_1Restore
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1Restore)(JNIEnv *env, jclass that, jint arg0, jint arg1);
JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1Restore)
(JNIEnv *env, jclass that, jint arg0, jint arg1)
{
@@ -1012,6 +1086,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1Restore)
#endif
#ifndef NO_Graphics_1Save
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1Save)(JNIEnv *env, jclass that, jint arg0);
JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1Save)
(JNIEnv *env, jclass that, jint arg0)
{
@@ -1024,6 +1099,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1Save)
#endif
#ifndef NO_Graphics_1ScaleTransform
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1ScaleTransform)(JNIEnv *env, jclass that, jint arg0, jfloat arg1, jfloat arg2, jint arg3);
JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1ScaleTransform)
(JNIEnv *env, jclass that, jint arg0, jfloat arg1, jfloat arg2, jint arg3)
{
@@ -1036,6 +1112,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1ScaleTransform)
#endif
#ifndef NO_Graphics_1SetClip__II
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1SetClip__II)(JNIEnv *env, jclass that, jint arg0, jint arg1);
JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1SetClip__II)
(JNIEnv *env, jclass that, jint arg0, jint arg1)
{
@@ -1048,6 +1125,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1SetClip__II)
#endif
#ifndef NO_Graphics_1SetClip__III
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1SetClip__III)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2);
JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1SetClip__III)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2)
{
@@ -1060,6 +1138,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1SetClip__III)
#endif
#ifndef NO_Graphics_1SetClip__ILorg_eclipse_swt_internal_gdip_Rect_2I
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1SetClip__ILorg_eclipse_swt_internal_gdip_Rect_2I)(JNIEnv *env, jclass that, jint arg0, jobject arg1, jint arg2);
JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1SetClip__ILorg_eclipse_swt_internal_gdip_Rect_2I)
(JNIEnv *env, jclass that, jint arg0, jobject arg1, jint arg2)
{
@@ -1076,6 +1155,7 @@ fail:
#endif
#ifndef NO_Graphics_1SetCompositingQuality
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1SetCompositingQuality)(JNIEnv *env, jclass that, jint arg0, jint arg1);
JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1SetCompositingQuality)
(JNIEnv *env, jclass that, jint arg0, jint arg1)
{
@@ -1088,6 +1168,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1SetCompositingQuality)
#endif
#ifndef NO_Graphics_1SetInterpolationMode
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1SetInterpolationMode)(JNIEnv *env, jclass that, jint arg0, jint arg1);
JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1SetInterpolationMode)
(JNIEnv *env, jclass that, jint arg0, jint arg1)
{
@@ -1100,6 +1181,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1SetInterpolationMode)
#endif
#ifndef NO_Graphics_1SetPageUnit
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1SetPageUnit)(JNIEnv *env, jclass that, jint arg0, jint arg1);
JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1SetPageUnit)
(JNIEnv *env, jclass that, jint arg0, jint arg1)
{
@@ -1112,6 +1194,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1SetPageUnit)
#endif
#ifndef NO_Graphics_1SetPixelOffsetMode
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1SetPixelOffsetMode)(JNIEnv *env, jclass that, jint arg0, jint arg1);
JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1SetPixelOffsetMode)
(JNIEnv *env, jclass that, jint arg0, jint arg1)
{
@@ -1124,6 +1207,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1SetPixelOffsetMode)
#endif
#ifndef NO_Graphics_1SetSmoothingMode
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1SetSmoothingMode)(JNIEnv *env, jclass that, jint arg0, jint arg1);
JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1SetSmoothingMode)
(JNIEnv *env, jclass that, jint arg0, jint arg1)
{
@@ -1136,6 +1220,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1SetSmoothingMode)
#endif
#ifndef NO_Graphics_1SetTextRenderingHint
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1SetTextRenderingHint)(JNIEnv *env, jclass that, jint arg0, jint arg1);
JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1SetTextRenderingHint)
(JNIEnv *env, jclass that, jint arg0, jint arg1)
{
@@ -1148,6 +1233,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1SetTextRenderingHint)
#endif
#ifndef NO_Graphics_1SetTransform
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1SetTransform)(JNIEnv *env, jclass that, jint arg0, jint arg1);
JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1SetTransform)
(JNIEnv *env, jclass that, jint arg0, jint arg1)
{
@@ -1160,6 +1246,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1SetTransform)
#endif
#ifndef NO_Graphics_1TranslateTransform
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1TranslateTransform)(JNIEnv *env, jclass that, jint arg0, jfloat arg1, jfloat arg2, jint arg3);
JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1TranslateTransform)
(JNIEnv *env, jclass that, jint arg0, jfloat arg1, jfloat arg2, jint arg3)
{
@@ -1172,6 +1259,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1TranslateTransform)
#endif
#ifndef NO_Graphics_1delete
+extern "C" JNIEXPORT void JNICALL Gdip_NATIVE(Graphics_1delete)(JNIEnv *env, jclass that, jint arg0);
JNIEXPORT void JNICALL Gdip_NATIVE(Graphics_1delete)
(JNIEnv *env, jclass that, jint arg0)
{
@@ -1182,6 +1270,7 @@ JNIEXPORT void JNICALL Gdip_NATIVE(Graphics_1delete)
#endif
#ifndef NO_Graphics_1new
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1new)(JNIEnv *env, jclass that, jint arg0);
JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1new)
(JNIEnv *env, jclass that, jint arg0)
{
@@ -1194,6 +1283,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(Graphics_1new)
#endif
#ifndef NO_HatchBrush_1delete
+extern "C" JNIEXPORT void JNICALL Gdip_NATIVE(HatchBrush_1delete)(JNIEnv *env, jclass that, jint arg0);
JNIEXPORT void JNICALL Gdip_NATIVE(HatchBrush_1delete)
(JNIEnv *env, jclass that, jint arg0)
{
@@ -1204,6 +1294,7 @@ JNIEXPORT void JNICALL Gdip_NATIVE(HatchBrush_1delete)
#endif
#ifndef NO_HatchBrush_1new
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(HatchBrush_1new)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2);
JNIEXPORT jint JNICALL Gdip_NATIVE(HatchBrush_1new)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2)
{
@@ -1216,6 +1307,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(HatchBrush_1new)
#endif
#ifndef NO_ImageAttributes_1SetColorMatrix
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(ImageAttributes_1SetColorMatrix)(JNIEnv *env, jclass that, jint arg0, jfloatArray arg1, jint arg2, jint arg3);
JNIEXPORT jint JNICALL Gdip_NATIVE(ImageAttributes_1SetColorMatrix)
(JNIEnv *env, jclass that, jint arg0, jfloatArray arg1, jint arg2, jint arg3)
{
@@ -1232,6 +1324,7 @@ fail:
#endif
#ifndef NO_ImageAttributes_1SetWrapMode
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(ImageAttributes_1SetWrapMode)(JNIEnv *env, jclass that, jint arg0, jint arg1);
JNIEXPORT jint JNICALL Gdip_NATIVE(ImageAttributes_1SetWrapMode)
(JNIEnv *env, jclass that, jint arg0, jint arg1)
{
@@ -1244,6 +1337,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(ImageAttributes_1SetWrapMode)
#endif
#ifndef NO_ImageAttributes_1delete
+extern "C" JNIEXPORT void JNICALL Gdip_NATIVE(ImageAttributes_1delete)(JNIEnv *env, jclass that, jint arg0);
JNIEXPORT void JNICALL Gdip_NATIVE(ImageAttributes_1delete)
(JNIEnv *env, jclass that, jint arg0)
{
@@ -1254,6 +1348,7 @@ JNIEXPORT void JNICALL Gdip_NATIVE(ImageAttributes_1delete)
#endif
#ifndef NO_ImageAttributes_1new
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(ImageAttributes_1new)(JNIEnv *env, jclass that);
JNIEXPORT jint JNICALL Gdip_NATIVE(ImageAttributes_1new)
(JNIEnv *env, jclass that)
{
@@ -1266,6 +1361,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(ImageAttributes_1new)
#endif
#ifndef NO_Image_1GetHeight
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Image_1GetHeight)(JNIEnv *env, jclass that, jint arg0);
JNIEXPORT jint JNICALL Gdip_NATIVE(Image_1GetHeight)
(JNIEnv *env, jclass that, jint arg0)
{
@@ -1278,6 +1374,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(Image_1GetHeight)
#endif
#ifndef NO_Image_1GetLastStatus
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Image_1GetLastStatus)(JNIEnv *env, jclass that, jint arg0);
JNIEXPORT jint JNICALL Gdip_NATIVE(Image_1GetLastStatus)
(JNIEnv *env, jclass that, jint arg0)
{
@@ -1290,6 +1387,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(Image_1GetLastStatus)
#endif
#ifndef NO_Image_1GetPalette
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Image_1GetPalette)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2);
JNIEXPORT jint JNICALL Gdip_NATIVE(Image_1GetPalette)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2)
{
@@ -1302,6 +1400,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(Image_1GetPalette)
#endif
#ifndef NO_Image_1GetPaletteSize
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Image_1GetPaletteSize)(JNIEnv *env, jclass that, jint arg0);
JNIEXPORT jint JNICALL Gdip_NATIVE(Image_1GetPaletteSize)
(JNIEnv *env, jclass that, jint arg0)
{
@@ -1314,6 +1413,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(Image_1GetPaletteSize)
#endif
#ifndef NO_Image_1GetPixelFormat
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Image_1GetPixelFormat)(JNIEnv *env, jclass that, jint arg0);
JNIEXPORT jint JNICALL Gdip_NATIVE(Image_1GetPixelFormat)
(JNIEnv *env, jclass that, jint arg0)
{
@@ -1326,6 +1426,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(Image_1GetPixelFormat)
#endif
#ifndef NO_Image_1GetWidth
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Image_1GetWidth)(JNIEnv *env, jclass that, jint arg0);
JNIEXPORT jint JNICALL Gdip_NATIVE(Image_1GetWidth)
(JNIEnv *env, jclass that, jint arg0)
{
@@ -1338,6 +1439,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(Image_1GetWidth)
#endif
#ifndef NO_LinearGradientBrush_1SetWrapMode
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(LinearGradientBrush_1SetWrapMode)(JNIEnv *env, jclass that, jint arg0, jint arg1);
JNIEXPORT jint JNICALL Gdip_NATIVE(LinearGradientBrush_1SetWrapMode)
(JNIEnv *env, jclass that, jint arg0, jint arg1)
{
@@ -1350,6 +1452,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(LinearGradientBrush_1SetWrapMode)
#endif
#ifndef NO_LinearGradientBrush_1delete
+extern "C" JNIEXPORT void JNICALL Gdip_NATIVE(LinearGradientBrush_1delete)(JNIEnv *env, jclass that, jint arg0);
JNIEXPORT void JNICALL Gdip_NATIVE(LinearGradientBrush_1delete)
(JNIEnv *env, jclass that, jint arg0)
{
@@ -1360,6 +1463,7 @@ JNIEXPORT void JNICALL Gdip_NATIVE(LinearGradientBrush_1delete)
#endif
#ifndef NO_LinearGradientBrush_1new
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(LinearGradientBrush_1new)(JNIEnv *env, jclass that, jobject arg0, jobject arg1, jint arg2, jint arg3);
JNIEXPORT jint JNICALL Gdip_NATIVE(LinearGradientBrush_1new)
(JNIEnv *env, jclass that, jobject arg0, jobject arg1, jint arg2, jint arg3)
{
@@ -1379,6 +1483,7 @@ fail:
#endif
#ifndef NO_Matrix_1GetElements
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Matrix_1GetElements)(JNIEnv *env, jclass that, jint arg0, jfloatArray arg1);
JNIEXPORT jint JNICALL Gdip_NATIVE(Matrix_1GetElements)
(JNIEnv *env, jclass that, jint arg0, jfloatArray arg1)
{
@@ -1395,6 +1500,7 @@ fail:
#endif
#ifndef NO_Matrix_1Invert
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Matrix_1Invert)(JNIEnv *env, jclass that, jint arg0);
JNIEXPORT jint JNICALL Gdip_NATIVE(Matrix_1Invert)
(JNIEnv *env, jclass that, jint arg0)
{
@@ -1407,6 +1513,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(Matrix_1Invert)
#endif
#ifndef NO_Matrix_1IsIdentity
+extern "C" JNIEXPORT jboolean JNICALL Gdip_NATIVE(Matrix_1IsIdentity)(JNIEnv *env, jclass that, jint arg0);
JNIEXPORT jboolean JNICALL Gdip_NATIVE(Matrix_1IsIdentity)
(JNIEnv *env, jclass that, jint arg0)
{
@@ -1419,6 +1526,7 @@ JNIEXPORT jboolean JNICALL Gdip_NATIVE(Matrix_1IsIdentity)
#endif
#ifndef NO_Matrix_1Multiply
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Matrix_1Multiply)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2);
JNIEXPORT jint JNICALL Gdip_NATIVE(Matrix_1Multiply)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2)
{
@@ -1431,6 +1539,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(Matrix_1Multiply)
#endif
#ifndef NO_Matrix_1Rotate
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Matrix_1Rotate)(JNIEnv *env, jclass that, jint arg0, jfloat arg1, jint arg2);
JNIEXPORT jint JNICALL Gdip_NATIVE(Matrix_1Rotate)
(JNIEnv *env, jclass that, jint arg0, jfloat arg1, jint arg2)
{
@@ -1443,6 +1552,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(Matrix_1Rotate)
#endif
#ifndef NO_Matrix_1Scale
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Matrix_1Scale)(JNIEnv *env, jclass that, jint arg0, jfloat arg1, jfloat arg2, jint arg3);
JNIEXPORT jint JNICALL Gdip_NATIVE(Matrix_1Scale)
(JNIEnv *env, jclass that, jint arg0, jfloat arg1, jfloat arg2, jint arg3)
{
@@ -1455,6 +1565,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(Matrix_1Scale)
#endif
#ifndef NO_Matrix_1SetElements
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Matrix_1SetElements)(JNIEnv *env, jclass that, jint arg0, jfloat arg1, jfloat arg2, jfloat arg3, jfloat arg4, jfloat arg5, jfloat arg6);
JNIEXPORT jint JNICALL Gdip_NATIVE(Matrix_1SetElements)
(JNIEnv *env, jclass that, jint arg0, jfloat arg1, jfloat arg2, jfloat arg3, jfloat arg4, jfloat arg5, jfloat arg6)
{
@@ -1467,6 +1578,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(Matrix_1SetElements)
#endif
#ifndef NO_Matrix_1Shear
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Matrix_1Shear)(JNIEnv *env, jclass that, jint arg0, jfloat arg1, jfloat arg2, jint arg3);
JNIEXPORT jint JNICALL Gdip_NATIVE(Matrix_1Shear)
(JNIEnv *env, jclass that, jint arg0, jfloat arg1, jfloat arg2, jint arg3)
{
@@ -1479,6 +1591,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(Matrix_1Shear)
#endif
#ifndef NO_Matrix_1TransformPoints__ILorg_eclipse_swt_internal_gdip_PointF_2I
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Matrix_1TransformPoints__ILorg_eclipse_swt_internal_gdip_PointF_2I)(JNIEnv *env, jclass that, jint arg0, jobject arg1, jint arg2);
JNIEXPORT jint JNICALL Gdip_NATIVE(Matrix_1TransformPoints__ILorg_eclipse_swt_internal_gdip_PointF_2I)
(JNIEnv *env, jclass that, jint arg0, jobject arg1, jint arg2)
{
@@ -1495,6 +1608,7 @@ fail:
#endif
#ifndef NO_Matrix_1Translate
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Matrix_1Translate)(JNIEnv *env, jclass that, jint arg0, jfloat arg1, jfloat arg2, jint arg3);
JNIEXPORT jint JNICALL Gdip_NATIVE(Matrix_1Translate)
(JNIEnv *env, jclass that, jint arg0, jfloat arg1, jfloat arg2, jint arg3)
{
@@ -1507,6 +1621,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(Matrix_1Translate)
#endif
#ifndef NO_Matrix_1delete
+extern "C" JNIEXPORT void JNICALL Gdip_NATIVE(Matrix_1delete)(JNIEnv *env, jclass that, jint arg0);
JNIEXPORT void JNICALL Gdip_NATIVE(Matrix_1delete)
(JNIEnv *env, jclass that, jint arg0)
{
@@ -1517,6 +1632,7 @@ JNIEXPORT void JNICALL Gdip_NATIVE(Matrix_1delete)
#endif
#ifndef NO_Matrix_1new
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Matrix_1new)(JNIEnv *env, jclass that, jfloat arg0, jfloat arg1, jfloat arg2, jfloat arg3, jfloat arg4, jfloat arg5);
JNIEXPORT jint JNICALL Gdip_NATIVE(Matrix_1new)
(JNIEnv *env, jclass that, jfloat arg0, jfloat arg1, jfloat arg2, jfloat arg3, jfloat arg4, jfloat arg5)
{
@@ -1529,6 +1645,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(Matrix_1new)
#endif
#ifndef NO_MoveMemory__Lorg_eclipse_swt_internal_gdip_BitmapData_2I
+extern "C" JNIEXPORT void JNICALL Gdip_NATIVE(MoveMemory__Lorg_eclipse_swt_internal_gdip_BitmapData_2I)(JNIEnv *env, jclass that, jobject arg0, jint arg1);
JNIEXPORT void JNICALL Gdip_NATIVE(MoveMemory__Lorg_eclipse_swt_internal_gdip_BitmapData_2I)
(JNIEnv *env, jclass that, jobject arg0, jint arg1)
{
@@ -1539,6 +1656,7 @@ JNIEXPORT void JNICALL Gdip_NATIVE(MoveMemory__Lorg_eclipse_swt_internal_gdip_Bi
#endif
#ifndef NO_MoveMemory__Lorg_eclipse_swt_internal_gdip_ColorPalette_2II
+extern "C" JNIEXPORT void JNICALL Gdip_NATIVE(MoveMemory__Lorg_eclipse_swt_internal_gdip_ColorPalette_2II)(JNIEnv *env, jclass that, jobject arg0, jint arg1, jint arg2);
JNIEXPORT void JNICALL Gdip_NATIVE(MoveMemory__Lorg_eclipse_swt_internal_gdip_ColorPalette_2II)
(JNIEnv *env, jclass that, jobject arg0, jint arg1, jint arg2)
{
@@ -1553,6 +1671,7 @@ fail:
#endif
#ifndef NO_PathGradientBrush_1SetCenterColor
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(PathGradientBrush_1SetCenterColor)(JNIEnv *env, jclass that, jint arg0, jint arg1);
JNIEXPORT jint JNICALL Gdip_NATIVE(PathGradientBrush_1SetCenterColor)
(JNIEnv *env, jclass that, jint arg0, jint arg1)
{
@@ -1565,6 +1684,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(PathGradientBrush_1SetCenterColor)
#endif
#ifndef NO_PathGradientBrush_1SetCenterPoint
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(PathGradientBrush_1SetCenterPoint)(JNIEnv *env, jclass that, jint arg0, jobject arg1);
JNIEXPORT jint JNICALL Gdip_NATIVE(PathGradientBrush_1SetCenterPoint)
(JNIEnv *env, jclass that, jint arg0, jobject arg1)
{
@@ -1581,6 +1701,7 @@ fail:
#endif
#ifndef NO_PathGradientBrush_1SetGraphicsPath
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(PathGradientBrush_1SetGraphicsPath)(JNIEnv *env, jclass that, jint arg0, jint arg1);
JNIEXPORT jint JNICALL Gdip_NATIVE(PathGradientBrush_1SetGraphicsPath)
(JNIEnv *env, jclass that, jint arg0, jint arg1)
{
@@ -1593,6 +1714,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(PathGradientBrush_1SetGraphicsPath)
#endif
#ifndef NO_PathGradientBrush_1delete
+extern "C" JNIEXPORT void JNICALL Gdip_NATIVE(PathGradientBrush_1delete)(JNIEnv *env, jclass that, jint arg0);
JNIEXPORT void JNICALL Gdip_NATIVE(PathGradientBrush_1delete)
(JNIEnv *env, jclass that, jint arg0)
{
@@ -1603,6 +1725,7 @@ JNIEXPORT void JNICALL Gdip_NATIVE(PathGradientBrush_1delete)
#endif
#ifndef NO_PathGradientBrush_1new
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(PathGradientBrush_1new)(JNIEnv *env, jclass that, jint arg0);
JNIEXPORT jint JNICALL Gdip_NATIVE(PathGradientBrush_1new)
(JNIEnv *env, jclass that, jint arg0)
{
@@ -1615,6 +1738,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(PathGradientBrush_1new)
#endif
#ifndef NO_Pen_1GetBrush
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Pen_1GetBrush)(JNIEnv *env, jclass that, jint arg0);
JNIEXPORT jint JNICALL Gdip_NATIVE(Pen_1GetBrush)
(JNIEnv *env, jclass that, jint arg0)
{
@@ -1627,6 +1751,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(Pen_1GetBrush)
#endif
#ifndef NO_Pen_1SetBrush
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Pen_1SetBrush)(JNIEnv *env, jclass that, jint arg0, jint arg1);
JNIEXPORT jint JNICALL Gdip_NATIVE(Pen_1SetBrush)
(JNIEnv *env, jclass that, jint arg0, jint arg1)
{
@@ -1639,6 +1764,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(Pen_1SetBrush)
#endif
#ifndef NO_Pen_1SetDashOffset
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Pen_1SetDashOffset)(JNIEnv *env, jclass that, jint arg0, jfloat arg1);
JNIEXPORT jint JNICALL Gdip_NATIVE(Pen_1SetDashOffset)
(JNIEnv *env, jclass that, jint arg0, jfloat arg1)
{
@@ -1651,6 +1777,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(Pen_1SetDashOffset)
#endif
#ifndef NO_Pen_1SetDashPattern
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Pen_1SetDashPattern)(JNIEnv *env, jclass that, jint arg0, jfloatArray arg1, jint arg2);
JNIEXPORT jint JNICALL Gdip_NATIVE(Pen_1SetDashPattern)
(JNIEnv *env, jclass that, jint arg0, jfloatArray arg1, jint arg2)
{
@@ -1667,6 +1794,7 @@ fail:
#endif
#ifndef NO_Pen_1SetDashStyle
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Pen_1SetDashStyle)(JNIEnv *env, jclass that, jint arg0, jint arg1);
JNIEXPORT jint JNICALL Gdip_NATIVE(Pen_1SetDashStyle)
(JNIEnv *env, jclass that, jint arg0, jint arg1)
{
@@ -1679,6 +1807,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(Pen_1SetDashStyle)
#endif
#ifndef NO_Pen_1SetLineCap
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Pen_1SetLineCap)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3);
JNIEXPORT jint JNICALL Gdip_NATIVE(Pen_1SetLineCap)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3)
{
@@ -1691,6 +1820,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(Pen_1SetLineCap)
#endif
#ifndef NO_Pen_1SetLineJoin
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Pen_1SetLineJoin)(JNIEnv *env, jclass that, jint arg0, jint arg1);
JNIEXPORT jint JNICALL Gdip_NATIVE(Pen_1SetLineJoin)
(JNIEnv *env, jclass that, jint arg0, jint arg1)
{
@@ -1703,6 +1833,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(Pen_1SetLineJoin)
#endif
#ifndef NO_Pen_1SetMiterLimit
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Pen_1SetMiterLimit)(JNIEnv *env, jclass that, jint arg0, jfloat arg1);
JNIEXPORT jint JNICALL Gdip_NATIVE(Pen_1SetMiterLimit)
(JNIEnv *env, jclass that, jint arg0, jfloat arg1)
{
@@ -1715,6 +1846,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(Pen_1SetMiterLimit)
#endif
#ifndef NO_Pen_1SetWidth
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Pen_1SetWidth)(JNIEnv *env, jclass that, jint arg0, jfloat arg1);
JNIEXPORT jint JNICALL Gdip_NATIVE(Pen_1SetWidth)
(JNIEnv *env, jclass that, jint arg0, jfloat arg1)
{
@@ -1727,6 +1859,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(Pen_1SetWidth)
#endif
#ifndef NO_Pen_1delete
+extern "C" JNIEXPORT void JNICALL Gdip_NATIVE(Pen_1delete)(JNIEnv *env, jclass that, jint arg0);
JNIEXPORT void JNICALL Gdip_NATIVE(Pen_1delete)
(JNIEnv *env, jclass that, jint arg0)
{
@@ -1737,6 +1870,7 @@ JNIEXPORT void JNICALL Gdip_NATIVE(Pen_1delete)
#endif
#ifndef NO_Pen_1new
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Pen_1new)(JNIEnv *env, jclass that, jint arg0, jfloat arg1);
JNIEXPORT jint JNICALL Gdip_NATIVE(Pen_1new)
(JNIEnv *env, jclass that, jint arg0, jfloat arg1)
{
@@ -1749,6 +1883,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(Pen_1new)
#endif
#ifndef NO_Point_1delete
+extern "C" JNIEXPORT void JNICALL Gdip_NATIVE(Point_1delete)(JNIEnv *env, jclass that, jint arg0);
JNIEXPORT void JNICALL Gdip_NATIVE(Point_1delete)
(JNIEnv *env, jclass that, jint arg0)
{
@@ -1759,6 +1894,7 @@ JNIEXPORT void JNICALL Gdip_NATIVE(Point_1delete)
#endif
#ifndef NO_Point_1new
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Point_1new)(JNIEnv *env, jclass that, jint arg0, jint arg1);
JNIEXPORT jint JNICALL Gdip_NATIVE(Point_1new)
(JNIEnv *env, jclass that, jint arg0, jint arg1)
{
@@ -1771,6 +1907,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(Point_1new)
#endif
#ifndef NO_Region_1GetHRGN
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Region_1GetHRGN)(JNIEnv *env, jclass that, jint arg0, jint arg1);
JNIEXPORT jint JNICALL Gdip_NATIVE(Region_1GetHRGN)
(JNIEnv *env, jclass that, jint arg0, jint arg1)
{
@@ -1783,6 +1920,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(Region_1GetHRGN)
#endif
#ifndef NO_Region_1IsInfinite
+extern "C" JNIEXPORT jboolean JNICALL Gdip_NATIVE(Region_1IsInfinite)(JNIEnv *env, jclass that, jint arg0, jint arg1);
JNIEXPORT jboolean JNICALL Gdip_NATIVE(Region_1IsInfinite)
(JNIEnv *env, jclass that, jint arg0, jint arg1)
{
@@ -1795,6 +1933,7 @@ JNIEXPORT jboolean JNICALL Gdip_NATIVE(Region_1IsInfinite)
#endif
#ifndef NO_Region_1delete
+extern "C" JNIEXPORT void JNICALL Gdip_NATIVE(Region_1delete)(JNIEnv *env, jclass that, jint arg0);
JNIEXPORT void JNICALL Gdip_NATIVE(Region_1delete)
(JNIEnv *env, jclass that, jint arg0)
{
@@ -1805,6 +1944,7 @@ JNIEXPORT void JNICALL Gdip_NATIVE(Region_1delete)
#endif
#ifndef NO_Region_1new__
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Region_1new__)(JNIEnv *env, jclass that);
JNIEXPORT jint JNICALL Gdip_NATIVE(Region_1new__)
(JNIEnv *env, jclass that)
{
@@ -1817,6 +1957,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(Region_1new__)
#endif
#ifndef NO_Region_1new__I
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(Region_1new__I)(JNIEnv *env, jclass that, jint arg0);
JNIEXPORT jint JNICALL Gdip_NATIVE(Region_1new__I)
(JNIEnv *env, jclass that, jint arg0)
{
@@ -1829,6 +1970,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(Region_1new__I)
#endif
#ifndef NO_SolidBrush_1delete
+extern "C" JNIEXPORT void JNICALL Gdip_NATIVE(SolidBrush_1delete)(JNIEnv *env, jclass that, jint arg0);
JNIEXPORT void JNICALL Gdip_NATIVE(SolidBrush_1delete)
(JNIEnv *env, jclass that, jint arg0)
{
@@ -1839,6 +1981,7 @@ JNIEXPORT void JNICALL Gdip_NATIVE(SolidBrush_1delete)
#endif
#ifndef NO_SolidBrush_1new
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(SolidBrush_1new)(JNIEnv *env, jclass that, jint arg0);
JNIEXPORT jint JNICALL Gdip_NATIVE(SolidBrush_1new)
(JNIEnv *env, jclass that, jint arg0)
{
@@ -1851,6 +1994,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(SolidBrush_1new)
#endif
#ifndef NO_StringFormat_1Clone
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(StringFormat_1Clone)(JNIEnv *env, jclass that, jint arg0);
JNIEXPORT jint JNICALL Gdip_NATIVE(StringFormat_1Clone)
(JNIEnv *env, jclass that, jint arg0)
{
@@ -1863,6 +2007,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(StringFormat_1Clone)
#endif
#ifndef NO_StringFormat_1GenericDefault
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(StringFormat_1GenericDefault)(JNIEnv *env, jclass that);
JNIEXPORT jint JNICALL Gdip_NATIVE(StringFormat_1GenericDefault)
(JNIEnv *env, jclass that)
{
@@ -1875,6 +2020,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(StringFormat_1GenericDefault)
#endif
#ifndef NO_StringFormat_1GenericTypographic
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(StringFormat_1GenericTypographic)(JNIEnv *env, jclass that);
JNIEXPORT jint JNICALL Gdip_NATIVE(StringFormat_1GenericTypographic)
(JNIEnv *env, jclass that)
{
@@ -1887,6 +2033,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(StringFormat_1GenericTypographic)
#endif
#ifndef NO_StringFormat_1GetFormatFlags
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(StringFormat_1GetFormatFlags)(JNIEnv *env, jclass that, jint arg0);
JNIEXPORT jint JNICALL Gdip_NATIVE(StringFormat_1GetFormatFlags)
(JNIEnv *env, jclass that, jint arg0)
{
@@ -1899,6 +2046,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(StringFormat_1GetFormatFlags)
#endif
#ifndef NO_StringFormat_1SetFormatFlags
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(StringFormat_1SetFormatFlags)(JNIEnv *env, jclass that, jint arg0, jint arg1);
JNIEXPORT jint JNICALL Gdip_NATIVE(StringFormat_1SetFormatFlags)
(JNIEnv *env, jclass that, jint arg0, jint arg1)
{
@@ -1911,6 +2059,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(StringFormat_1SetFormatFlags)
#endif
#ifndef NO_StringFormat_1SetHotkeyPrefix
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(StringFormat_1SetHotkeyPrefix)(JNIEnv *env, jclass that, jint arg0, jint arg1);
JNIEXPORT jint JNICALL Gdip_NATIVE(StringFormat_1SetHotkeyPrefix)
(JNIEnv *env, jclass that, jint arg0, jint arg1)
{
@@ -1923,6 +2072,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(StringFormat_1SetHotkeyPrefix)
#endif
#ifndef NO_StringFormat_1SetTabStops
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(StringFormat_1SetTabStops)(JNIEnv *env, jclass that, jint arg0, jfloat arg1, jint arg2, jfloatArray arg3);
JNIEXPORT jint JNICALL Gdip_NATIVE(StringFormat_1SetTabStops)
(JNIEnv *env, jclass that, jint arg0, jfloat arg1, jint arg2, jfloatArray arg3)
{
@@ -1939,6 +2089,7 @@ fail:
#endif
#ifndef NO_StringFormat_1delete
+extern "C" JNIEXPORT void JNICALL Gdip_NATIVE(StringFormat_1delete)(JNIEnv *env, jclass that, jint arg0);
JNIEXPORT void JNICALL Gdip_NATIVE(StringFormat_1delete)
(JNIEnv *env, jclass that, jint arg0)
{
@@ -1949,6 +2100,7 @@ JNIEXPORT void JNICALL Gdip_NATIVE(StringFormat_1delete)
#endif
#ifndef NO_TextureBrush_1SetTransform
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(TextureBrush_1SetTransform)(JNIEnv *env, jclass that, jint arg0, jint arg1);
JNIEXPORT jint JNICALL Gdip_NATIVE(TextureBrush_1SetTransform)
(JNIEnv *env, jclass that, jint arg0, jint arg1)
{
@@ -1961,6 +2113,7 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(TextureBrush_1SetTransform)
#endif
#ifndef NO_TextureBrush_1delete
+extern "C" JNIEXPORT void JNICALL Gdip_NATIVE(TextureBrush_1delete)(JNIEnv *env, jclass that, jint arg0);
JNIEXPORT void JNICALL Gdip_NATIVE(TextureBrush_1delete)
(JNIEnv *env, jclass that, jint arg0)
{
@@ -1971,6 +2124,7 @@ JNIEXPORT void JNICALL Gdip_NATIVE(TextureBrush_1delete)
#endif
#ifndef NO_TextureBrush_1new
+extern "C" JNIEXPORT jint JNICALL Gdip_NATIVE(TextureBrush_1new)(JNIEnv *env, jclass that, jint arg0, jint arg1, jfloat arg2, jfloat arg3, jfloat arg4, jfloat arg5);
JNIEXPORT jint JNICALL Gdip_NATIVE(TextureBrush_1new)
(JNIEnv *env, jclass that, jint arg0, jint arg1, jfloat arg2, jfloat arg3, jfloat arg4, jfloat arg5)
{
@@ -1982,4 +2136,3 @@ JNIEXPORT jint JNICALL Gdip_NATIVE(TextureBrush_1new)
}
#endif
-}
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/win32/library/gdip_stats.h b/bundles/org.eclipse.swt/Eclipse SWT PI/win32/library/gdip_stats.h
index a418f867dc..c74127779e 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/win32/library/gdip_stats.h
+++ b/bundles/org.eclipse.swt/Eclipse SWT PI/win32/library/gdip_stats.h
@@ -16,9 +16,13 @@ extern char* Gdip_nativeFunctionNames[];
#define Gdip_NATIVE_ENTER(env, that, func) Gdip_nativeFunctionCallCount[func]++;
#define Gdip_NATIVE_EXIT(env, that, func)
#else
+#ifndef Gdip_NATIVE_ENTER
#define Gdip_NATIVE_ENTER(env, that, func)
+#endif
+#ifndef Gdip_NATIVE_EXIT
#define Gdip_NATIVE_EXIT(env, that, func)
#endif
+#endif
typedef enum {
BitmapData_1delete_FUNC,
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/win32/library/os_stats.h b/bundles/org.eclipse.swt/Eclipse SWT PI/win32/library/os_stats.h
index 6165fa7c0f..680e27b541 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/win32/library/os_stats.h
+++ b/bundles/org.eclipse.swt/Eclipse SWT PI/win32/library/os_stats.h
@@ -16,9 +16,13 @@ extern char* OS_nativeFunctionNames[];
#define OS_NATIVE_ENTER(env, that, func) OS_nativeFunctionCallCount[func]++;
#define OS_NATIVE_EXIT(env, that, func)
#else
+#ifndef OS_NATIVE_ENTER
#define OS_NATIVE_ENTER(env, that, func)
+#endif
+#ifndef OS_NATIVE_EXIT
#define OS_NATIVE_EXIT(env, that, func)
#endif
+#endif
typedef enum {
ACCEL_1sizeof_FUNC,
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Program/cde/library/cde_stats.h b/bundles/org.eclipse.swt/Eclipse SWT Program/cde/library/cde_stats.h
index c8d244bbf3..3249569ce1 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT Program/cde/library/cde_stats.h
+++ b/bundles/org.eclipse.swt/Eclipse SWT Program/cde/library/cde_stats.h
@@ -16,9 +16,13 @@ extern char* CDE_nativeFunctionNames[];
#define CDE_NATIVE_ENTER(env, that, func) CDE_nativeFunctionCallCount[func]++;
#define CDE_NATIVE_EXIT(env, that, func)
#else
+#ifndef CDE_NATIVE_ENTER
#define CDE_NATIVE_ENTER(env, that, func)
+#endif
+#ifndef CDE_NATIVE_EXIT
#define CDE_NATIVE_EXIT(env, that, func)
#endif
+#endif
typedef enum {
DtActionArg_1sizeof_FUNC,
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Program/gnome/library/gnome_stats.h b/bundles/org.eclipse.swt/Eclipse SWT Program/gnome/library/gnome_stats.h
index 69ef29a128..2b9693213a 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT Program/gnome/library/gnome_stats.h
+++ b/bundles/org.eclipse.swt/Eclipse SWT Program/gnome/library/gnome_stats.h
@@ -20,9 +20,13 @@ extern char* GNOME_nativeFunctionNames[];
#define GNOME_NATIVE_ENTER(env, that, func) GNOME_nativeFunctionCallCount[func]++;
#define GNOME_NATIVE_EXIT(env, that, func)
#else
+#ifndef GNOME_NATIVE_ENTER
#define GNOME_NATIVE_ENTER(env, that, func)
+#endif
+#ifndef GNOME_NATIVE_EXIT
#define GNOME_NATIVE_EXIT(env, that, func)
#endif
+#endif
typedef enum {
GnomeVFSMimeApplication_1sizeof_FUNC,