| 282 | } |
| 283 | |
| 284 | INT_PTR NSISCALL popintptr(void) |
| 285 | { |
| 286 | TCHAR buf[128]; |
| 287 | if (popstringn(buf,COUNTOF(buf))) |
| 288 | return 0; |
| 289 | return nsishelper_str_to_ptr(buf); |
| 290 | } |
| 291 | |
| 292 | int NSISCALL popint_or(void) |
| 293 | { |
nothing calls this directly
no test coverage detected