Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add some missing NSSearchPathDirectory enum types #442

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions Headers/Foundation/NSPathUtilities.h
Original file line number Diff line number Diff line change
Expand Up @@ -131,9 +131,16 @@ enum
NSDownloadsDirectory = 15, /** location of downloaded files */
#endif
#if OS_API_VERSION(MAC_OS_X_VERSION_10_6, GS_API_LATEST)
NSInputMethodsDirectory = 16, /** location of Library/Input methods */
NSMoviesDirectory = 17, /** location of video/movie files */
NSMusicDirectory = 18, /** location of music files */
NSPicturesDirectory = 19, /** location of picture/images files */
NSPrinterDescriptionDirectory = 20, /** location of system's PPDs directory */
NSSharedPublicDirectory = 21, /** location of user's Public sharing directory */
NSPreferencePanesDirectory = 22, /** location of the PreferencePanes directory for use with System Preferences */
#if OS_API_VERSION(MAC_OS_X_VERSION_10_8, GS_API_LATEST)
NSApplicationScriptsDirectory = 23, /** location of the user scripts folder for the calling application */
#endif
NSItemReplacementDirectory = 99, /** pass to URLFirDirectory:inDomain:
appropriateForURL:create:error to create a temporary directory */
#endif
Expand Down
Loading