Ejemplo n.º 1
0
 public static void CSharpMarshalToNative(this ITypedDecl decl,
                                          CSharpMarshalManagedToNativePrinter printer)
 {
     CSharpMarshalToNative(decl.QualifiedType, printer);
 }
Ejemplo n.º 2
0
 public static void CSharpMarshalToNative(this Type type,
                                          CSharpMarshalManagedToNativePrinter printer)
 {
     CSharpMarshalToNative(new QualifiedType(type), printer);
 }
Ejemplo n.º 3
0
 public static void CSharpMarshalToNative(this QualifiedType type,
                                          CSharpMarshalManagedToNativePrinter printer)
 {
     printer.Context.FullType = type;
     type.Visit(printer);
 }
Ejemplo n.º 4
0
 public static void CSharpMarshalToNative(this ITypedDecl decl,
     CSharpMarshalManagedToNativePrinter printer)
 {
     CSharpMarshalToNative(decl.QualifiedType, printer);
 }
Ejemplo n.º 5
0
 public static void CSharpMarshalToNative(this Type type,
     CSharpMarshalManagedToNativePrinter printer)
 {
     CSharpMarshalToNative(new QualifiedType(type), printer);
 }
Ejemplo n.º 6
0
 public static void CSharpMarshalToNative(this QualifiedType type,
     CSharpMarshalManagedToNativePrinter printer)
 {
     (printer.Context as CSharpMarshalContext).FullType = type;
     type.Visit(printer);
 }