- Timestamp:
- 11/17/06 23:31:14 (18 years ago)
- Location:
- trunk/launch/launch
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/launch/launch/README
r310 r314 1 launch 1.1 [30 October 2006]2 ========== 1 launch 1.1.1 [unreleased] 2 ============ 3 3 4 4 A command-line launcher for Mac OS X in the spirit of open(1). … … 223 223 --------------- 224 224 225 1.1.1 - unreleased 226 - updated error codes for Mac OS X 10.4 225 227 1.1 - 30 October 2006 226 228 - -L: send "launch" (ascr/noop) event to app, bypasses automatic -
trunk/launch/launch/VERSION
r309 r314 1 1.1 1 1.1.1d1 -
trunk/launch/launch/main.c
r309 r314 70 70 static errList ERRS = { 71 71 // Launch Services errors 72 { kLSAppInTrashErr, "application is in the Trash" }, 73 { kLSExecutableIncorrectFormat, "executable is unsupported on this processor architecture" }, 72 74 { kLSUnknownErr, "unknown Launch Services error" }, 73 { kLSApplicationNotFoundErr, "application not found" }, 75 { kLSNotAnApplicationErr, "item is not an application" }, 76 { kLSDataUnavailableErr, "item metadata is unavailable" }, 77 { kLSApplicationNotFoundErr, "application not found for document" }, 78 { kLSUnknownTypeErr, "cannot determine item kind" }, 74 79 { kLSLaunchInProgressErr, "application is being opened; please try again after the application is open" }, 75 { kLSNotRegisteredErr, "application not registered in Launch Services database" }, 80 { kLSServerCommunicationErr, "unable to connect to Launch Services.\nAre you logged in?" }, 81 { kLSIncompatibleSystemVersionErr, "application is incompatible with this version of Mac OS X" }, 82 { kLSNoLaunchPermissionErr, "no permission to launch this application", }, 76 83 { kLSNoExecutableErr, "application package contains no executable, or an unusable executable" }, 77 84 { kLSNoClassicEnvironmentErr, "Classic environment required but not available" },
Note:
See TracChangeset
for help on using the changeset viewer.