misc/libphysfs/lzma/C/Alloc.h
author Wuzzy <almikes@aol.com>
Thu, 12 Oct 2017 20:17:00 +0200
changeset 12698 f2690a0ccf19
parent 12213 bb5522e88ab2
permissions -rw-r--r--
QTfrontend: Fix flickering and bad offset of control config popup If you opened the pop-up to change a key, there was a very short flicker at the left side and the pop-up had a bad offset which sometimes caused entries to be out of screen bounds.

/* Alloc.h */

#ifndef __COMMON_ALLOC_H
#define __COMMON_ALLOC_H

#include <stddef.h>

void *MyAlloc(size_t size);
void MyFree(void *address);

#ifdef _WIN32

void SetLargePageSize();

void *MidAlloc(size_t size);
void MidFree(void *address);
void *BigAlloc(size_t size);
void BigFree(void *address);

#else

#define MidAlloc(size) MyAlloc(size)
#define MidFree(address) MyFree(address)
#define BigAlloc(size) MyAlloc(size)
#define BigFree(address) MyFree(address)

#endif

#endif