Esempio n. 1
0
 private static extern string LLVMTripleAsString(LLVMTripleRef triple, [MarshalAs(UnmanagedType.U1)] bool normalize);
Esempio n. 2
0
 private static extern void LLVMTripleGetEnvironmentVersion(LLVMTripleRef triple, out UInt32 major, out UInt32 minor, out UInt32 micro);
Esempio n. 3
0
 private static extern LLVMTripleObjectFormatType LLVMTripleGetObjectFormatType(LLVMTripleRef triple);
Esempio n. 4
0
 private static extern bool LLVMTripleHasEnvironment(LLVMTripleRef triple);
Esempio n. 5
0
 private static extern LLVMTripleEnvironmentType LLVMTripleGetEnvironmentType(LLVMTripleRef triple);
Esempio n. 6
0
 private static extern LLVMTripleOSType LLVMTripleGetOsType(LLVMTripleRef triple);
Esempio n. 7
0
 private static extern LLVMTripleVendorType LLVMTripleGetVendorType(LLVMTripleRef triple);
Esempio n. 8
0
 private static extern LLVMTripleSubArchType LLVMTripleGetSubArchType(LLVMTripleRef triple);
Esempio n. 9
0
 private static extern bool LLVMTripleOpEqual(LLVMTripleRef lhs, LLVMTripleRef rhs);
Esempio n. 10
0
 private Triple(LLVMTripleRef handle)
 {
     TripleHandle = handle;
 }