MCPcopy Create free account
hub / github.com/LegacyUpdate/LegacyUpdate / pushstring

Function pushstring

include/nsis/pluginapi.c:50–58  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

48}
49
50void 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
60LPTSTR NSISCALL getuservariable(const int varnum)
61{

Callers 6

PushStringAFunction · 0.85
PushStringWFunction · 0.85
pushintptrFunction · 0.85
VerifyFileHash.cFile · 0.85
ExecScriptFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected