aboutsummaryrefslogtreecommitdiff
path: root/sp/src/vgui2/chromehtml/html_mac.mm
blob: 6feb90466bf46d176bd885e48a2b3588e482aa46 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//=========== 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];	
}