Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
7643 views
1
#import <UIKit/UIKit.h>
2
3
#undef ABS
4
#undef MIN
5
#undef MAX
6
7
#include "mupdf/fitz.h"
8
9
#import "MuDocRef.h"
10
11
@interface MuLibraryController : UITableViewController <UIActionSheetDelegate>
12
- (void) openDocument: (NSString*)filename;
13
- (void) askForPassword: (NSString*)prompt;
14
- (void) onPasswordOkay;
15
- (void) onPasswordCancel;
16
- (void) reload;
17
@end
18
19