source: trunk/Cocoa/F-Script Anywhere/Source/main.m@ 397

Last change on this file since 397 was 342, checked in by rchin, 17 years ago

Leopard compatibility changes:

  • Removed some icon caching code that was causing crashes (not sure we really needed those optimizations anyway -- doesn't appear to affect performance)
  • Added code to automatically try to add certificate to keychain, for new code signing behavior (replaces previous procmod nonesense).
  • Note that the enclosed public certificate is mine, and so it will need to be signed by me. In the case that someone else wants to distribute this binary, please replace Certficiate.cer with your own public certificate, and then make sure o code sign the binary after it is built.
File size: 163 bytes
Line 
1#import <Cocoa/Cocoa.h>
2#import <Foundation/NSDebug.h>
3
4int main(int argc, const char *argv[])
5{
6 NSZombieEnabled = 1;
7 return NSApplicationMain(argc, argv);
8}
Note: See TracBrowser for help on using the repository browser.