summaryrefslogblamecommitdiffstatshomepage
path: root/src/osd/sdl/osxutils.m
blob: 066402248c9f693b1efe705229d41c9a3caac357 (plain) (tree)


































                                                                  
//============================================================
//
//  osxutils.m - Mac OS X utilities for SDLMAME
//
//  Copyright (c) 1996-2006, Nicola Salmoria and the MAME Team.
//  Visit http://mamedev.org for licensing and usage restrictions.
//
//  SDLMAME by Olivier Galibert and R. Belmont
//
//============================================================

#import <Foundation/Foundation.h>

// MAMEOS headers
#import "osxutils.h"


//============================================================
//  NewAutoreleasePool
//============================================================

void * NewAutoreleasePool(void)
{
	return [[NSAutoreleasePool alloc] init];
}


//============================================================
//  ReleaseAutoreleasePool
//============================================================

void ReleaseAutoreleasePool(void *pool)
{
	[(NSAutoreleasePool *)pool release];
}