summaryrefslogtreecommitdiff
path: root/binaryninjacore.h
diff options
context:
space:
mode:
authorPeter LaFosse <peter@vector35.com>2021-08-24 15:12:18 -0400
committerPeter LaFosse <peter@vector35.com>2021-09-05 10:09:10 -0400
commit19fa73a2593d730b47e6b54f76762fcac109e25d (patch)
treed72484dbb1b4ec23e2f73c069280d9ab7dd42ec5 /binaryninjacore.h
parent827749ef27bd994644158c0a8f76a52df7f773b3 (diff)
Remove CreateEnumerationBuilderOfWidth instead just use the normal API and pass nullptr as arch
Diffstat (limited to 'binaryninjacore.h')
-rw-r--r--binaryninjacore.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/binaryninjacore.h b/binaryninjacore.h
index ae2b73e4..59a7141e 100644
--- a/binaryninjacore.h
+++ b/binaryninjacore.h
@@ -4687,7 +4687,6 @@ __attribute__ ((format (printf, 1, 2)))
BINARYNINJACOREAPI BNTypeBuilder* BNCreateStructureTypeBuilderWithBuilder(BNStructureBuilder* s);
BINARYNINJACOREAPI BNTypeBuilder* BNCreateEnumerationTypeBuilder(BNArchitecture* arch, BNEnumeration* e, size_t width, bool isSigned);
BINARYNINJACOREAPI BNTypeBuilder* BNCreateEnumerationTypeBuilderWithBuilder(BNArchitecture* arch, BNEnumerationBuilder* e, size_t width, bool isSigned);
- BINARYNINJACOREAPI BNTypeBuilder* BNCreateEnumerationTypeBuilderOfWidth(BNEnumeration* e, size_t width, bool isSigned);
BINARYNINJACOREAPI BNTypeBuilder* BNCreatePointerTypeBuilder(BNArchitecture* arch, const BNTypeWithConfidence* const type,
BNBoolWithConfidence* cnst, BNBoolWithConfidence* vltl, BNReferenceType refType);
BINARYNINJACOREAPI BNTypeBuilder* BNCreatePointerTypeBuilderOfWidth(size_t width, const BNTypeWithConfidence* const type,