| 37 | } |
| 38 | |
| 39 | void NSISCALL pushstring(const TCHAR *str) |
| 40 | { |
| 41 | stack_t *th; |
| 42 | if (!g_stacktop) return; |
| 43 | th=(stack_t*)GlobalAlloc(GPTR,(sizeof(stack_t)+(g_stringsize)*sizeof(TCHAR))); |
| 44 | lstrcpyn(th->text,str,g_stringsize); |
| 45 | th->next=*g_stacktop; |
| 46 | *g_stacktop=th; |
| 47 | } |
| 48 | |
| 49 | TCHAR* NSISCALL getuservariable(const int varnum) |
| 50 | { |
no outgoing calls
no test coverage detected