cmake-js / fastcall

fastcall - Fast, dyncall based foreign function interface library for Node.js
https://www.npmjs.com/package/fastcall
Other
201 stars 15 forks source link

Nested struct #34

Open elderapo opened 6 years ago

elderapo commented 6 years ago

Hello, is it possible to declare nested struct such as:

struct SomeStruct {
    SomeStruct* next;
    int something;
};