Files
HL2Overcharged/vgui2/chromehtml/html_mac.mm
2025-05-21 21:20:08 +03:00

16 lines
369 B
Plaintext

//=========== Copyright Valve Corporation, All rights reserved. ===============//
//
// Purpose:
//=============================================================================//
#include <Cocoa/Cocoa.h>
extern "C" void *CreateAutoReleasePool()
{
return [[NSAutoreleasePool alloc] init];
}
extern "C" void ReleaseAutoReleasePool( void *pool )
{
[pool release];
}