19 lines
557 B
Text
19 lines
557 B
Text
/* -----------------------------------------------------------------------------
|
|
* javascriptruntime.swg
|
|
*
|
|
* Javascript support code
|
|
* ----------------------------------------------------------------------------- */
|
|
|
|
%insert(runtime) %{
|
|
#include <JavaScriptCore/JavaScript.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <errno.h>
|
|
#include <limits.h>
|
|
%}
|
|
|
|
%insert(runtime) "swigrun.swg"; /* SWIG API */
|
|
%insert(runtime) "swigerrors.swg"; /* SWIG errors */
|
|
|
|
%insert(runtime) "javascriptrun.swg"; /* SWIG errors */
|