123456789101112131415161718192021222324252627282930313233343536373839 |
- #import <Foundation/Foundation.h>
- #import <QuartzCore/QuartzCore.h>
- CGPDFDocumentRef CGPDFDocumentCreateUsingUrl(CFURLRef theURL, NSString *password);
- CGPDFDocumentRef CGPDFDocumentCreateUsingData(CGDataProviderRef dataProvider, NSString *password);
- BOOL CGPDFDocumentUrlNeedsPassword(CFURLRef theURL, NSString *password);
- BOOL CGPDFDocumentDataNeedsPassword(CGDataProviderRef dataProvider, NSString *password);
|