mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
20 lines
267 B
Plaintext
20 lines
267 B
Plaintext
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
#include "gfxTestCocoaHelper.h"
|
|
|
|
static NSAutoreleasePool *sPool = NULL;
|
|
|
|
void
|
|
CocoaPoolInit() {
|
|
if (sPool)
|
|
[sPool release];
|
|
sPool = [[NSAutoreleasePool alloc] init];
|
|
}
|
|
|
|
void
|
|
CocoaPoolRelease() {
|
|
[sPool release];
|
|
sPool = NULL;
|
|
}
|