my_GlobalAlloc no longer reduces the size

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4255 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2005-09-09 16:08:44 +00:00
parent 8e3f7ed623
commit d6367e4125
4 changed files with 6 additions and 10 deletions

View file

@ -90,10 +90,6 @@ int NSISCALL my_MessageBox(const char *text, UINT type) {
return MessageBox(g_hwnd, text, g_caption, _type);
}
void * NSISCALL my_GlobalAlloc(DWORD dwBytes) {
return (void *)GlobalAlloc(GPTR, dwBytes);
}
void NSISCALL myDelete(char *buf, int flags)
{
static char lbuf[NSIS_MAX_STRLEN];