| 48 | } |
| 49 | |
| 50 | void NSISCALL pushstring(LPCTSTR str) |
| 51 | { |
| 52 | stack_t *th; |
| 53 | if (!g_stacktop) return; |
| 54 | th=(stack_t*)GlobalAlloc(GPTR,(sizeof(stack_t)+(g_stringsize)*sizeof(*str))); |
| 55 | lstrcpyn(th->text,str,g_stringsize); |
| 56 | th->next=*g_stacktop; |
| 57 | *g_stacktop=th; |
| 58 | } |
| 59 | |
| 60 | LPTSTR NSISCALL getuservariable(const int varnum) |
| 61 | { |
no outgoing calls
no test coverage detected