1#import <AppKit/AppKit.h>
2
3int main(int argc, const char *argv[]) {
4    NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
5    NSString *pluginPath = [[NSBundle mainBundle] pathForResource:@"ITunesCommunication" ofType:@"plugin"];
6    NSBundle *pluginBundle = [NSBundle bundleWithPath:pluginPath];
7    [pluginBundle load];
8    [pool release];
9    return NSApplicationMain(argc, argv);
10}
11