foreign export block

```
foreign export {
    my_i32: i32;
    my_foo :: proc() -> i32 {
        return 123;
    }
}
```
This commit is contained in:
gingerBill
2017-10-15 16:05:42 +01:00
parent 85f7c2d040
commit 3d8bf36a30
7 changed files with 72 additions and 59 deletions

View File

@@ -46,6 +46,7 @@ enum EntityFlag {
EntityFlag_CVarArg = 1<<20,
EntityFlag_ForeignExport = 1<<23,
};
// Zero value means the overloading process is not yet done