Created
May 1, 2013 05:42
-
-
Save AknEp/5493918 to your computer and use it in GitHub Desktop.
Photoshop CS6 SDK を XCode4.6.1 でビルドする ref: http://qiita.com/items/c6bd60b6f5a2d8b64552
This file contains hidden or 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
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk/Developer/Headers/FlatCarbon/ |
This file contains hidden or 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
inline Boolean PISetRect(Rect* pRect, short nLeft, short nTop, short nRight, short nBottom) | |
{ | |
pRect->left = nLeft; | |
pRect->top = nTop; | |
pRect->right = nRight; | |
pRect->bottom = nBottom; | |
return true; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment