mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-05 23:28:48 +00:00
Minor rearrangement
This commit is contained in:
+18
-16
@@ -2,6 +2,21 @@ package objc_Foundation
|
|||||||
|
|
||||||
import "core:intrinsics"
|
import "core:intrinsics"
|
||||||
|
|
||||||
|
@(objc_class="NSConcreteGlobalBlock")
|
||||||
|
Block :: struct {using _: Object}
|
||||||
|
|
||||||
|
@(objc_type=Block, objc_name="createGlobal", objc_is_class_method=true)
|
||||||
|
Block_createGlobal :: proc "c" (user_data: rawptr, user_proc: proc "c" (user_data: rawptr)) -> ^Block {
|
||||||
|
return Block_createInternal(true, user_data, user_proc)
|
||||||
|
}
|
||||||
|
|
||||||
|
@(objc_type=Block, objc_name="createLocal", objc_is_class_method=true)
|
||||||
|
Block_createLocal :: proc "c" (user_data: rawptr, user_proc: proc "c" (user_data: rawptr)) -> ^Block {
|
||||||
|
return Block_createInternal(false, user_data, user_proc)
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@(private)
|
||||||
Internal_Block_Literal_Base :: struct {
|
Internal_Block_Literal_Base :: struct {
|
||||||
isa: ^intrinsics.objc_class,
|
isa: ^intrinsics.objc_class,
|
||||||
flags: u32,
|
flags: u32,
|
||||||
@@ -10,6 +25,7 @@ Internal_Block_Literal_Base :: struct {
|
|||||||
descriptor: ^Block_Descriptor,
|
descriptor: ^Block_Descriptor,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@(private)
|
||||||
Internal_Block_Literal :: struct {
|
Internal_Block_Literal :: struct {
|
||||||
using base: Internal_Block_Literal_Base,
|
using base: Internal_Block_Literal_Base,
|
||||||
// Imported Variables
|
// Imported Variables
|
||||||
@@ -17,6 +33,7 @@ Internal_Block_Literal :: struct {
|
|||||||
user_data: rawptr,
|
user_data: rawptr,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@(private)
|
||||||
Block_Descriptor :: struct {
|
Block_Descriptor :: struct {
|
||||||
reserved: uint,
|
reserved: uint,
|
||||||
size: uint,
|
size: uint,
|
||||||
@@ -25,16 +42,12 @@ Block_Descriptor :: struct {
|
|||||||
signature: cstring,
|
signature: cstring,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@(private)
|
||||||
global_block_descriptor := Block_Descriptor{
|
global_block_descriptor := Block_Descriptor{
|
||||||
reserved = 0,
|
reserved = 0,
|
||||||
size = size_of(Internal_Block_Literal),
|
size = size_of(Internal_Block_Literal),
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@(objc_class="NSConcreteGlobalBlock")
|
|
||||||
Block :: struct {using _: Object}
|
|
||||||
|
|
||||||
|
|
||||||
@(private="file")
|
@(private="file")
|
||||||
Block_createInternal :: proc "c" (is_global: bool, user_data: rawptr, user_proc: proc "c" (user_data: rawptr)) -> ^Block {
|
Block_createInternal :: proc "c" (is_global: bool, user_data: rawptr, user_proc: proc "c" (user_data: rawptr)) -> ^Block {
|
||||||
// Set to true on blocks that have captures (and thus are not true
|
// Set to true on blocks that have captures (and thus are not true
|
||||||
@@ -66,14 +79,3 @@ Block_createInternal :: proc "c" (is_global: bool, user_data: rawptr, user_proc:
|
|||||||
|
|
||||||
return auto_cast bl
|
return auto_cast bl
|
||||||
}
|
}
|
||||||
|
|
||||||
@(objc_type=Block, objc_name="createGlobal", objc_is_class_method=true)
|
|
||||||
Block_createGlobal :: proc "c" (user_data: rawptr, user_proc: proc "c" (user_data: rawptr)) -> ^Block {
|
|
||||||
return Block_createInternal(true, user_data, user_proc)
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
@(objc_type=Block, objc_name="createLocal", objc_is_class_method=true)
|
|
||||||
Block_createLocal :: proc "c" (user_data: rawptr, user_proc: proc "c" (user_data: rawptr)) -> ^Block {
|
|
||||||
return Block_createInternal(false, user_data, user_proc)
|
|
||||||
}
|
|
||||||
|
|||||||
Reference in New Issue
Block a user