diff options
Diffstat (limited to 'iPhonePrivate.h')
-rw-r--r-- | iPhonePrivate.h | 28 |
1 files changed, 24 insertions, 4 deletions
diff --git a/iPhonePrivate.h b/iPhonePrivate.h index f93602f..0a0ba34 100644 --- a/iPhonePrivate.h +++ b/iPhonePrivate.h @@ -295,11 +295,31 @@ typedef enum { @end // }}} -// extern *; {{{ -extern "C" CFStringRef const kGSDisplayIdentifiersCapability; +// #ifndef AVAILABLE_MAC_OS_X_VERSION_10_6_AND_LATER {{{ +#ifndef AVAILABLE_MAC_OS_X_VERSION_10_6_AND_LATER +#define AVAILABLE_MAC_OS_X_VERSION_10_6_AND_LATER + +typedef enum { + UIModalPresentationFullScreen, + UIModalPresentationPageSheet, + UIModalPresentationFormSheet, + UIModalPresentationCurrentContext, +} UIModalPresentationStyle; -extern "C" float const UIWebViewGrowsAndShrinksToFitHeight; -extern "C" float const UIWebViewScalesToFitScale; +@class NSUndoManager; +@class UIPasteboard; + +@interface UIViewController (iPad) +- (void) setModalPresentationStyle:(UIModalPresentationStyle)style; +@end + +#endif//AVAILABLE_MAC_OS_X_VERSION_10_6_AND_LATER +// }}} + +// extern *; {{{ +extern CFStringRef const kGSDisplayIdentifiersCapability; +extern float const UIWebViewGrowsAndShrinksToFitHeight; +extern float const UIWebViewScalesToFitScale; // }}} // extern "C" *(); {{{ extern "C" UIImage *_UIImageWithName(NSString *name); |