mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-06 07:38:48 +00:00
Improve Library related stuff
This commit is contained in:
@@ -6906,13 +6906,13 @@ Function_label :: #force_inline proc(self: ^Function) -> ^NS.String {
|
|||||||
Function_name :: #force_inline proc(self: ^Function) -> ^NS.String {
|
Function_name :: #force_inline proc(self: ^Function) -> ^NS.String {
|
||||||
return msgSend(^NS.String, self, "name")
|
return msgSend(^NS.String, self, "name")
|
||||||
}
|
}
|
||||||
@(objc_type=Function, objc_name="newArgumentEncoderWithBufferIndex")
|
@(objc_type=Function, objc_name="newArgumentEncoder")
|
||||||
Function_newArgumentEncoderWithBufferIndex :: #force_inline proc(self: ^Function, bufferIndex: NS.UInteger) -> ^Function {
|
Function_newArgumentEncoder :: #force_inline proc(self: ^Function, bufferIndex: NS.UInteger) -> ^ArgumentEncoder {
|
||||||
return msgSend(^Function, self, "newArgumentEncoderWithBufferIndex:", bufferIndex)
|
return msgSend(^ArgumentEncoder, self, "newArgumentEncoderWithBufferIndex:", bufferIndex)
|
||||||
}
|
}
|
||||||
@(objc_type=Function, objc_name="newArgumentEncoderWithBufferIndexWithReflection")
|
@(objc_type=Function, objc_name="newArgumentEncoderWithReflection")
|
||||||
Function_newArgumentEncoderWithBufferIndexWithReflection :: #force_inline proc(self: ^Function, bufferIndex: NS.UInteger, reflection: ^AutoreleasedArgument) -> ^Function {
|
Function_newArgumentEncoderWithReflection :: #force_inline proc(self: ^Function, bufferIndex: NS.UInteger, reflection: ^AutoreleasedArgument) -> ^ArgumentEncoder {
|
||||||
return msgSend(^Function, self, "newArgumentEncoderWithBufferIndex:reflection:", bufferIndex, reflection)
|
return msgSend(^ArgumentEncoder, self, "newArgumentEncoderWithBufferIndex:reflection:", bufferIndex, reflection)
|
||||||
}
|
}
|
||||||
@(objc_type=Function, objc_name="options")
|
@(objc_type=Function, objc_name="options")
|
||||||
Function_options :: #force_inline proc(self: ^Function) -> FunctionOptions {
|
Function_options :: #force_inline proc(self: ^Function) -> FunctionOptions {
|
||||||
|
|||||||
Reference in New Issue
Block a user