Skip to content

Instantly share code, notes, and snippets.

@AknEp
Created May 1, 2013 05:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AknEp/5493918 to your computer and use it in GitHub Desktop.
Save AknEp/5493918 to your computer and use it in GitHub Desktop.
Photoshop CS6 SDK を XCode4.6.1 でビルドする ref: http://qiita.com/items/c6bd60b6f5a2d8b64552
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk/Developer/Headers/FlatCarbon/
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