2023-06-27 22:30:04 +00:00
|
|
|
/* main.m
|
|
|
|
*
|
|
|
|
* Copyright (C) 2023 Free Software Foundation, Inc.
|
|
|
|
*
|
|
|
|
* Author: Gregory John Casamento <greg.casamento@gmail.com>
|
|
|
|
* Date: 2023
|
|
|
|
*
|
|
|
|
* This file is part of GNUstep.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111
|
|
|
|
* USA.
|
|
|
|
*/
|
|
|
|
|
2023-06-03 23:34:09 +00:00
|
|
|
// main.m
|
|
|
|
|
|
|
|
#import <Foundation/Foundation.h>
|
2023-06-05 01:03:21 +00:00
|
|
|
#import <AppKit/AppKit.h>
|
2023-06-03 23:34:09 +00:00
|
|
|
|
|
|
|
#import <GormCore/GormCore.h>
|
|
|
|
#import <InterfaceBuilder/InterfaceBuilder.h>
|
|
|
|
|
2023-06-05 01:03:21 +00:00
|
|
|
#import "AppDelegate.h"
|
|
|
|
|
2023-06-03 23:34:09 +00:00
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
2023-06-05 01:03:21 +00:00
|
|
|
NSApplication *app = [NSApplication sharedApplication];
|
|
|
|
AppDelegate *delegate = [[AppDelegate alloc] init];
|
|
|
|
extern char **environ;
|
|
|
|
|
2023-06-27 22:30:04 +00:00
|
|
|
// Don't show icon...
|
|
|
|
[[NSUserDefaults standardUserDefaults] setBool: YES forKey: @"GSSuppressAppIcon"];
|
|
|
|
|
|
|
|
// Initialize process...
|
2023-06-05 01:03:21 +00:00
|
|
|
[NSProcessInfo initializeWithArguments: (char **)argv
|
|
|
|
count: argc
|
|
|
|
environment: environ];
|
2023-06-27 22:30:04 +00:00
|
|
|
|
|
|
|
// Run...
|
2023-06-05 01:03:21 +00:00
|
|
|
[app setDelegate: delegate];
|
|
|
|
[app run];
|
|
|
|
|
2023-06-03 23:34:09 +00:00
|
|
|
return 0;
|
|
|
|
}
|