javascriptinit.swg 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. %insert(init) %{
  2. SWIGRUNTIME void
  3. SWIG_JSC_SetModule(swig_module_info *swig_module) {}
  4. SWIGRUNTIME swig_module_info *
  5. SWIG_JSC_GetModule(void) {
  6. return 0;
  7. }
  8. #define SWIG_GetModule(clientdata) SWIG_JSC_GetModule()
  9. #define SWIG_SetModule(clientdata, pointer) SWIG_JSC_SetModule(pointer)
  10. %}
  11. %insert(init) "swiginit.swg"
  12. %fragment ("js_initializer_define", "templates") %{
  13. #define SWIGJSC_INIT $jsname_initialize
  14. %}
  15. // Open the initializer function
  16. %insert(init)
  17. %{
  18. #ifdef __cplusplus
  19. extern "C" {
  20. #endif
  21. bool SWIGJSC_INIT (JSGlobalContextRef context, JSObjectRef *exports) {
  22. SWIG_InitializeModule(0);
  23. %}
  24. /* -----------------------------------------------------------------------------
  25. * js_initializer: template for the module initializer function
  26. * - $jsname: module name
  27. * - $jscreatenamespaces: part with code for creating namespace objects
  28. * - $jscreateclasses: part with code for creating classes
  29. * - $jsregisternamespaces: part with code for registration of namespaces
  30. * ----------------------------------------------------------------------------- */
  31. %fragment ("js_initializer", "templates") %{
  32. /* Initialize the base swig type object */
  33. _SwigObject_objectDefinition.staticFunctions = _SwigObject_functions;
  34. _SwigObject_objectDefinition.staticValues = _SwigObject_values;
  35. _SwigObject_classRef = JSClassCreate(&_SwigObject_objectDefinition);
  36. /* Initialize the PackedData class */
  37. _SwigPackedData_objectDefinition.staticFunctions = _SwigPackedData_functions;
  38. _SwigPackedData_objectDefinition.staticValues = _SwigPackedData_values;
  39. _SwigPackedData_objectDefinition.finalize = _wrap_SwigPackedData_delete;
  40. _SwigPackedData_classRef = JSClassCreate(&_SwigPackedData_objectDefinition);
  41. /* Create objects for namespaces */
  42. $jscreatenamespaces
  43. /* Register classes */
  44. $jsregisterclasses
  45. /* Register namespaces */
  46. $jsregisternamespaces
  47. *exports = exports_object;
  48. return true;
  49. }
  50. #ifdef __cplusplus
  51. }
  52. #endif
  53. %}