[CABMAN] Remove _WIN32 ifdef's

This commit is contained in:
Dmitry Bagdanov 2018-01-26 22:44:14 +07:00 committed by Pierre Schweitzer
parent 5b8975211d
commit ae391dd609
5 changed files with 244 additions and 709 deletions

View file

@ -21,13 +21,13 @@
voidpf MSZipAlloc(voidpf opaque, uInt items, uInt size)
{
DPRINT(DEBUG_MEMORY, ("items = (%d) size = (%d)\n", items, size));
return AllocateMemory(items * size);
return malloc(items * size);
}
void MSZipFree (voidpf opaque, voidpf address)
{
DPRINT(DEBUG_MEMORY, ("\n"));
FreeMemory(address);
free(address);
}