| 18 | g_variables=variables; } |
| 19 | |
| 20 | typedef struct _stack_t { |
| 21 | struct _stack_t *next; |
| 22 | #ifdef UNICODE |
| 23 | WCHAR text[1]; // this should be the length of g_stringsize when allocating |
| 24 | #else |
| 25 | char text[1]; |
| 26 | #endif |
| 27 | } stack_t; |
| 28 | |
| 29 | enum |
| 30 | { |
nothing calls this directly
no outgoing calls
no test coverage detected