mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-15 21:49:48 +08:00
18 lines
375 B
C++
18 lines
375 B
C++
// Pen.h: interface for the Pen class.
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
#if !defined(Aggplus_Mem)
|
|
#define Aggplus_Mem
|
|
|
|
#include "ap_AggPlusTypes.h"
|
|
|
|
namespace Aggplus
|
|
{
|
|
|
|
void *ap_malloc_Aligned(size_t size, BYTE alignment);
|
|
void *ap_malloc16(int size);
|
|
void ap_free(void *ptr);
|
|
}
|
|
#endif // !defined(Aggplus_Mem)
|