forked from phracker/MacOSX-SDKs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request phracker#4 from kylefrost/master
Add MacOSX10.10.sdk
- Loading branch information
Showing
26,328 changed files
with
8,089,041 additions
and
0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>CanonicalName</key> | ||
<string>macosx10.10</string> | ||
<key>CustomProperties</key> | ||
<dict> | ||
<key>KERNEL_EXTENSION_HEADER_SEARCH_PATHS</key> | ||
<string>$(KERNEL_FRAMEWORK)/PrivateHeaders $(KERNEL_FRAMEWORK_HEADERS)</string> | ||
</dict> | ||
<key>DefaultProperties</key> | ||
<dict> | ||
<key>MACOSX_DEPLOYMENT_TARGET</key> | ||
<string>10.10</string> | ||
<key>PLATFORM_NAME</key> | ||
<string>macosx</string> | ||
<key>DEFAULT_KEXT_INSTALL_PATH</key> | ||
<string>$(LIBRARY_KEXT_INSTALL_PATH)</string> | ||
</dict> | ||
<key>DisplayName</key> | ||
<string>OS X 10.10</string> | ||
<key>MaximumDeploymentTarget</key> | ||
<string>10.10</string> | ||
<key>MinimalDisplayName</key> | ||
<string>10.10</string> | ||
<key>MinimumSupportedToolsVersion</key> | ||
<string>3.2</string> | ||
<key>SupportedBuildToolComponents</key> | ||
<array> | ||
<string>com.apple.compilers.gcc.headers.4_2</string> | ||
</array> | ||
<key>Version</key> | ||
<string>10.10</string> | ||
<key>isBaseSDK</key> | ||
<string>YES</string> | ||
</dict> | ||
</plist> |
16 changes: 16 additions & 0 deletions
16
MacOSX10.10.sdk/System/Library/CoreServices/SystemVersion.plist
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>ProductBuildVersion</key> | ||
<string>14A382</string> | ||
<key>ProductCopyright</key> | ||
<string>1983-2014 Apple Inc.</string> | ||
<key>ProductName</key> | ||
<string>Mac OS X</string> | ||
<key>ProductUserVisibleVersion</key> | ||
<string>10.10</string> | ||
<key>ProductVersion</key> | ||
<string>10.10</string> | ||
</dict> | ||
</plist> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Versions/Current/AGL |
1 change: 1 addition & 0 deletions
1
MacOSX10.10.sdk/System/Library/Frameworks/AGL.framework/Headers
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Versions/Current/Headers |
Binary file added
BIN
+25.5 KB
MacOSX10.10.sdk/System/Library/Frameworks/AGL.framework/Versions/A/AGL
Binary file not shown.
421 changes: 421 additions & 0 deletions
421
MacOSX10.10.sdk/System/Library/Frameworks/AGL.framework/Versions/A/Headers/agl.h
Large diffs are not rendered by default.
Oops, something went wrong.
48 changes: 48 additions & 0 deletions
48
MacOSX10.10.sdk/System/Library/Frameworks/AGL.framework/Versions/A/Headers/aglContext.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
/* | ||
File: AGL/aglContext.h | ||
Contains: Data type for internal contexts, for use with internal renderer interface. | ||
Version: Technology: Mac OS 9 | ||
Release: GM | ||
Copyright: (c) 2000-2010 Apple, Inc. All rights reserved. | ||
Bugs?: For bug reports, consult the following page on | ||
the World Wide Web: | ||
http://developer.apple.com/bugreporter/ | ||
*/ | ||
|
||
#ifndef _AGLCONTEXT_H | ||
#define _AGLCONTEXT_H | ||
|
||
#include <OpenGL/OpenGLAvailability.h> | ||
#include <OpenGL/gliContext.h> | ||
#include <OpenGL/gliDispatch.h> | ||
|
||
#ifdef __cplusplus | ||
extern "C" { | ||
#endif | ||
|
||
|
||
/* | ||
** Opaque declaration for private AGLContext data. | ||
*/ | ||
typedef struct __AGLPrivateRec *AGLPrivate OPENGL_DEPRECATED(10_0, 10_9); | ||
|
||
/* | ||
** AGLContext structure. | ||
*/ | ||
struct __AGLContextRec { | ||
GLIContext rend; | ||
GLIFunctionDispatch disp; | ||
AGLPrivate priv; | ||
} OPENGL_DEPRECATED(10_0, 10_9); | ||
|
||
|
||
#ifdef __cplusplus | ||
} | ||
#endif | ||
|
||
#endif /* _AGLCONTEXT_H */ |
Oops, something went wrong.