mirror of
https://github.com/QuasarApp/macdependency.git
synced 2025-05-11 10:49:33 +00:00
15 lines
261 B
Mathematica
15 lines
261 B
Mathematica
|
//
|
||
|
// main.m
|
||
|
// MacDependency
|
||
|
//
|
||
|
// Created by Konrad Windszus on 19.06.09.
|
||
|
// Copyright Konrad Windszus 2009 . All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <Cocoa/Cocoa.h>
|
||
|
|
||
|
int main(int argc, char *argv[])
|
||
|
{
|
||
|
return NSApplicationMain(argc, (const char **) argv);
|
||
|
}
|