You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: libscript/src/objc.lcb
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -305,7 +305,7 @@ end handler
305
305
306
306
/****/
307
307
308
-
private foreign handler _MCObjcObjectCreateWithId_AsPointer(in pPointer as optional Pointer) returns ObjcObject binds to "MCObjcObjectCreateWithId"
308
+
private foreign handler _MCObjcObjectCreateWithId_AsPointer(in pPointer as optional Pointer, out rObject as ObjcObject) returns CBool binds to "MCObjcObjectCreateWithId"
309
309
private foreign handler _MCObjcObjectGetId_AsPointer(in pObject as ObjcObject) returns optional Pointer binds to "MCObjcObjectGetId"
310
310
311
311
/**/
@@ -323,12 +323,12 @@ Description:
323
323
Use <PointerToObjcObject> to convert a variable of type Pointer to one of type
324
324
ObjcObject.
325
325
*/
326
-
public handler PointerToObjcObject(in pPointer as optional Pointer) returns ObjcObject
327
-
variable tObject as ObjcObject
326
+
public handler PointerToObjcObject(in pPointer as optional Pointer) returns optional ObjcObject
327
+
variable tObject as optional ObjcObject
328
328
unsafe
329
-
put _MCObjcObjectCreateWithId_AsPointer(pPointer) into tObject
0 commit comments