mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 03:28:20 +02:00
13 lines
202 B
C
13 lines
202 B
C
#pragma once
|
|
|
|
extern "C"
|
|
#ifdef BF_STOMP_EXPORT
|
|
__declspec(dllexport)
|
|
#endif
|
|
void* StompAlloc(intptr size);
|
|
|
|
extern "C"
|
|
#ifdef BF_STOMP_EXPORT
|
|
__declspec(dllexport)
|
|
#endif
|
|
void StompFree(void* addr);
|