genius257 / DllStructEx

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

ptr struct ref #2

Closed genius257 closed 3 years ago

genius257 commented 3 years ago

This is two features.

  1. The struct pointer ref
  2. Possible recursive refs
struct node {
    int val;
    struct node *next;
};

A solution for number 2 could be to not solve the pointer ref type, until used. This would be slower code if called repeatedly, but would avoid the parser getting stuck in a loop