Browse CVS Repository
Contents of /enbanfukusyaya/EnbanKensa/macosx/main.m
Parent Directory
| Revision Log
| Revision Graph
Revision 1.1 -
( show annotations)
( download)
Sun May 29 17:12:23 2005 UTC
(18 years, 10 months ago)
by bananajinn
Branch: MAIN
CVS Tags: HEAD
*** empty log message ***
| 1 |
/* ~ŐĄĘŽ - EnbanKensa |
| 2 |
* Copyright (c) 2005 Kagetani Hideto |
| 3 |
* main.m |
| 4 |
* $Date: 2005/05/17 15:42:28 $ |
| 5 |
* $Revision: 1.1 $ |
| 6 |
*/ |
| 7 |
|
| 8 |
#import <Cocoa/Cocoa.h> |
| 9 |
#import <drive.h> |
| 10 |
|
| 11 |
int main(int argc, const char *argv[]) |
| 12 |
{ |
| 13 |
int ret; |
| 14 |
|
| 15 |
ret = OpenAspi(); |
| 16 |
if(ret!=RET_OK) |
| 17 |
return ret; |
| 18 |
ret = NSApplicationMain(argc, argv); |
| 19 |
CloseAspi(); |
| 20 |
return ret; |
| 21 |
} |
|