Freed 104 bytes for more dll imports, at the cost of 78 bytes of code

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@1869 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
eccles 2002-12-02 23:08:10 +00:00
parent fa330ae04d
commit 3bfb7393d6
5 changed files with 29 additions and 11 deletions

View file

@ -8,8 +8,10 @@ int NSISCALL myatoi(char *s);
void NSISCALL myitoa(char *s, int d);
char * NSISCALL mystrcpy(char *out, const char *in);
int NSISCALL mystrlen(const char *in);
BOOL NSISCALL my_SetWindowText(HWND hWnd, const char *val);
BOOL NSISCALL my_SetDialogItemText(HWND dlg, UINT idx, const char *val);
int NSISCALL my_GetWindowText(HWND hWnd, char *val, int size);
int NSISCALL my_GetDialogItemText(HWND dlg, UINT idx, char *val, int size);
#ifdef NSIS_CONFIG_LOG
extern char log_text[NSIS_MAX_STRLEN*4];