15 lines
252 B
Mathematica
15 lines
252 B
Mathematica
|
//
|
||
|
// main.m
|
||
|
// QuietUnrar
|
||
|
//
|
||
|
// Created by Robert McGovern on 2009/09/06.
|
||
|
// Copyright 2009 Tarasis. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <Cocoa/Cocoa.h>
|
||
|
|
||
|
int main(int argc, char *argv[])
|
||
|
{
|
||
|
return NSApplicationMain(argc, (const char **) argv);
|
||
|
}
|