summaryrefslogtreecommitdiffstats
path: root/waftools/fragments/cocoa.m
blob: 91b3aaa585f6ee837b3b7bb7aee8228a58426b13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#import <CoreServices/CoreServices.h>
#import <OpenGL/OpenGL.h>
#import <Cocoa/Cocoa.h>

#include "osdep/macosx_compat.h"

int main(int argc, char **argv)
{
    @autoreleasepool {
        NSArray *ary = @[@1, @2, @3];
        NSLog(@"test subscripting: %@", ary[0]);
        NSApplicationLoad();
        CVDisplayLinkRef link;
        CVDisplayLinkCreateWithCGDisplay(0, &link);
    }
}