You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
389 B
16 lines
389 B
15 years ago
|
/**
|
||
|
* main.m
|
||
|
* ScintillaTest
|
||
|
*
|
||
|
* Created by Mike Lischke on 02.04.09.
|
||
|
* Copyright Sun Microsystems, Inc 2009. All rights reserved.
|
||
|
* This file is dual licensed under LGPL v2.1 and the Scintilla license (http://www.scintilla.org/License.txt).
|
||
|
*/
|
||
|
|
||
|
#import <Cocoa/Cocoa.h>
|
||
|
|
||
|
int main(int argc, char *argv[])
|
||
|
{
|
||
|
return NSApplicationMain(argc, (const char **) argv);
|
||
|
}
|