Skip to content

Commit

Permalink
Merge pull request phracker#4 from kylefrost/master
Browse files Browse the repository at this point in the history
Add MacOSX10.10.sdk
  • Loading branch information
phracker committed Nov 11, 2014
2 parents 676dddd + 8030a29 commit 8519a1d
Show file tree
Hide file tree
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.
38 changes: 38 additions & 0 deletions MacOSX10.10.sdk/SDKSettings.plist
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 MacOSX10.10.sdk/System/Library/CoreServices/SystemVersion.plist
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>
Binary file not shown.

Large diffs are not rendered by default.

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 */
Loading

0 comments on commit 8519a1d

Please sign in to comment.