genius257 / DllStructEx

Extended DllStruct for AutoIt3
MIT License
2 stars 1 forks source link

inline structs #1

Closed genius257 closed 3 years ago

genius257 commented 3 years ago
union {
    int i;
    float f;
    struct {
        unsigned int u;
        double d;
    } s;
} u;