Browse CVS Repository
Contents of /enbanfukusyaya/EnbanFukusyaYa/MacOSX/main.m
Parent Directory
| Revision Log
| Revision Graph
Revision 1.2 -
( show annotations)
( download)
Mon Apr 18 22:59:27 2005 UTC
(18 years, 11 months ago)
by bananajinn
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +1 -1 lines
*** empty log message ***
| 1 |
// |
| 2 |
// main.m |
| 3 |
// ÇPROJECTNAMEÈ |
| 4 |
// |
| 5 |
// Created by ÇFULLUSERNAMEÈ on ÇDATEÈ. |
| 6 |
// Copyright (c) ÇYEARÈ ÇORGANIZATIONNAMEÈ. All rights reserved. |
| 7 |
// |
| 8 |
|
| 9 |
#import <Cocoa/Cocoa.h> |
| 10 |
#import <drive.h> |
| 11 |
|
| 12 |
int main(int argc, const char *argv[]) |
| 13 |
{ |
| 14 |
int ret; |
| 15 |
|
| 16 |
ret = OpenAspi(); |
| 17 |
if(ret!=RET_OK) |
| 18 |
return ret; |
| 19 |
ret = NSApplicationMain(argc, argv); |
| 20 |
CloseAspi(); |
| 21 |
return ret; |
| 22 |
} |
|