Guest User

Untitled

a guest
Dec 11th, 2017
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //
  2. // Unicast.h
  3. // Unicast
  4. //
  5. // Copyright (c) 2011, Lemonility
  6. // All rights reserved.
  7. // 
  8. // This file is licensed under the Lemonility Commons License, which can be found in the accompanying "LICENSE" file.
  9. //   * The "LICENSE" file must accompany any and all files which contain this above copyright notice.
  10. //   * The terms of the "LICENSE" file must be followed without fault except when given explicit permission otherwise.
  11. //   * The "LICENSE" file may not be altered in any way unless prior permission is given.
  12. //   * The above copyright notice shall not be removed or
  13. // altered in any way without explicit permission from  Lemonility.
  14. //
  15.  
  16. #import <Foundation/Foundation.h>
  17. #import "include/FlashRuntimeExtensions.h"
  18.  
  19. @interface Unicast : NSObject
  20.  
  21. FREObject IsSupported(FREContext ctx, void* funcData, uint32_t argc, FREObject argv[]);
  22.  
  23. void ContextInitializer(void* extData, const uint8_t* ctxType, FREContext ctx,
  24.                         uint32_t* numFunctionsToTest, const FRENamedFunction** functionsToSet);
  25.  
  26. void ContextFinalizer(FREContext ctx);
  27.  
  28. void ExtInitializer(void** extDataToSet, FREContextInitializer* ctxInitializerToSet,
  29.                     FREContextFinalizer* ctxFinalizerToSet);
  30.  
  31. void ExtFinalizer(void* extData);
  32.  
  33. @end
Add Comment
Please, Sign In to add comment