예제 #1
0
파일: JSApi.cs 프로젝트: ialex32x/unity-jsb
 public static extern int JS_DefinePropertyValue(JSContext ctx, JSValueConst this_obj,
                                                 JSAtom prop, JSValue val, JSPropFlags flags);
예제 #2
0
파일: JSApi.cs 프로젝트: ialex32x/unity-jsb
 public static extern JSValue JSB_NewPropertyObject(JSContext ctx, JSValueConst this_obj,
                                                    JSAtom name, JSPropFlags flags);
예제 #3
0
파일: JSApi.cs 프로젝트: ialex32x/unity-jsb
 public static extern int JS_DefinePropertyValueStr(JSContext ctx, JSValueConst this_obj,
                                                    [MarshalAs(UnmanagedType.LPStr)] string prop,
                                                    JSValue val, JSPropFlags flags);
예제 #4
0
파일: JSApi.cs 프로젝트: ialex32x/unity-jsb
 public static extern JSValue JSB_NewPropertyObjectStr(JSContext ctx, JSValueConst this_obj,
                                                       [MarshalAs(UnmanagedType.LPStr)] string name, JSPropFlags flags);