view R/rdc/src/cocoa.m_off @ 31:622914f1f3bf

- some cleanups
author Tassilo Philipp
date Fri, 10 Apr 2020 20:41:48 +0200
parents 0cfcc391201f
children
line wrap: on
line source

#ifdef __APPLE__
#import <Foundation/NSAutoreleasePool.h>

NSAutoreleasePool* newPool()
{
  NSAutoreleasePool* pool = [[NSAutoreleasePool alloc] init];
  return(pool);
}

void releasePool(NSAutoreleasePool* pool)
{
  [pool release];
}
#endif