mirror of
https://github.com/Gigaslav/HL2Overcharged.git
synced 2026-01-06 10:10:03 +03:00
16 lines
369 B
Plaintext
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];
|
|
} |