Added ManagedSoftwareUpdate.xcodeproj.

This is a new tool for user notification of available Managed software updates.

git-svn-id: http://munki.googlecode.com/svn/trunk@46 a4e17f2e-e282-11dd-95e1-755cbddbdd66
This commit is contained in:
Greg Neagle
2009-05-11 17:56:07 +00:00
parent ef6abe9460
commit e226ce2a53
13 changed files with 2601 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
extern void ASKInitialize();
extern int NSApplicationMain(int argc, const char *argv[]);
int main(int argc, const char *argv[])
{
ASKInitialize();
return NSApplicationMain(argc, argv);
}