From f8b999c03ab306b767ef62ae946b31a931fa46ad Mon Sep 17 00:00:00 2001 From: kichik Date: Wed, 13 Jun 2007 18:55:07 +0000 Subject: [PATCH] use A functions intead of T git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@5169 212acab6-be3b-0410-9dea-997c60f758d6 --- Contrib/ExDLL/exdll.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Contrib/ExDLL/exdll.h b/Contrib/ExDLL/exdll.h index a4ca50a3..661bf17e 100644 --- a/Contrib/ExDLL/exdll.h +++ b/Contrib/ExDLL/exdll.h @@ -95,7 +95,7 @@ static int __stdcall popstring(char *str) stack_t *th; if (!g_stacktop || !*g_stacktop) return 1; th=(*g_stacktop); - lstrcpy(str,th->text); + lstrcpyA(str,th->text); *g_stacktop = th->next; GlobalFree((HGLOBAL)th); return 0; @@ -106,7 +106,7 @@ static void __stdcall pushstring(const char *str) stack_t *th; if (!g_stacktop) return; th=(stack_t*)GlobalAlloc(GPTR,sizeof(stack_t)+g_stringsize); - lstrcpyn(th->text,str,g_stringsize); + lstrcpynA(th->text,str,g_stringsize); th->next=*g_stacktop; *g_stacktop=th; } @@ -120,7 +120,7 @@ static char * __stdcall getuservariable(const int varnum) static void __stdcall setuservariable(const int varnum, const char *var) { if (var != NULL && varnum >= 0 && varnum < __INST_LAST) - lstrcpy(g_variables + varnum*g_stringsize, var); + lstrcpyA(g_variables + varnum*g_stringsize, var); }