public
Description: A Mac OS X photo uploader program for my photo album.
Homepage: http://bleu.west.spy.net/~dustin/projects/photoupload/
Clone URL: git://github.com/dustin/photoupload.git
photoupload / main.m
100644 16 lines (13 sloc) 0.311 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//
// main.m
// PhotoUpload
// arch-tag: 55D50018-9196-11D8-8850-000A957659CC
//
// Created by Dustin Sallings on Tue Oct 08 2002.
// Copyright (c) 2002 __MyCompanyName__. All rights reserved.
//
 
#import <Cocoa/Cocoa.h>
 
int main(int argc, const char *argv[])
{
    return NSApplicationMain(argc, argv);
}