mirror of
https://github.com/odin-lang/Odin.git
synced 2025-12-30 18:02:02 +00:00
foreign export block
```
foreign export {
my_i32: i32;
my_foo :: proc() -> i32 {
return 123;
}
}
```
This commit is contained in:
@@ -46,6 +46,7 @@ enum EntityFlag {
|
||||
|
||||
EntityFlag_CVarArg = 1<<20,
|
||||
|
||||
EntityFlag_ForeignExport = 1<<23,
|
||||
};
|
||||
|
||||
// Zero value means the overloading process is not yet done
|
||||
|
||||
Reference in New Issue
Block a user