33 lines
628 B
Plaintext
33 lines
628 B
Plaintext
#import <Foundation/Foundation.h>
|
|
#import "GenerateAllocateAuthorization.h"
|
|
|
|
|
|
@implementation FrameworkLibAPI
|
|
|
|
id<HideModifyCanvasIndex> api = NULL;
|
|
+(void) registerAPIforNativeCalls:(id<HideModifyCanvasIndex>) aApi
|
|
{
|
|
api = aApi;
|
|
}
|
|
|
|
@end
|
|
|
|
|
|
extern "C" {
|
|
void AggregateBuilderInstallListCopyBundle(const char* flag, bool value) {
|
|
if(api){
|
|
[api AggregateBuilderInstallListCopyBundle:[NSString stringWithUTF8String:flag] :value];
|
|
}
|
|
}
|
|
|
|
void InitializeInfoEncryptComponent(){
|
|
if(api){
|
|
[api InitializeInfoEncryptComponent];
|
|
}
|
|
}
|
|
|
|
// void setUrl(const char* v){}
|
|
}
|
|
|
|
|