File: paradox-mp.h

package info (click to toggle)
pxlib 0.6.9-1
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,684 kB
  • sloc: ansic: 5,373; sh: 4,873; makefile: 127
file content (21 lines) | stat: -rw-r--r-- 428 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef __PARADOX_MP_H__
#define __PARADOX_MP_H__

#include <paradox-gsf.h>

PXLIB_API void PXLIB_CALL
PX_mp_init(void);

PXLIB_API void * PXLIB_CALL
PX_mp_malloc(pxdoc_t *p, size_t size, const char *caller);

PXLIB_API void * PXLIB_CALL
PX_mp_realloc(pxdoc_t *p, void *mem, size_t size, const char *caller);

PXLIB_API void PXLIB_CALL
PX_mp_free(pxdoc_t *p, void *mem);

PXLIB_API void PXLIB_CALL
PX_mp_list_unfreed();

#endif