summaryrefslogtreecommitdiff
path: root/src/vm/comdependenthandle.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/vm/comdependenthandle.h')
-rw-r--r--src/vm/comdependenthandle.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/vm/comdependenthandle.h b/src/vm/comdependenthandle.h
index 7192a4bbc3..edc9a6b30f 100644
--- a/src/vm/comdependenthandle.h
+++ b/src/vm/comdependenthandle.h
@@ -41,12 +41,12 @@
class DependentHandle
{
public:
- static FCDECL3(VOID, nInitialize, Object *primary, Object *secondary, OBJECTHANDLE *outHandle);
- static FCDECL2(VOID, nGetPrimary, OBJECTHANDLE handle, Object **outPrimary);
- static FCDECL3(VOID, nGetPrimaryAndSecondary, OBJECTHANDLE handle, Object **outPrimary, Object **outSecondary);
- static FCDECL1(VOID, nFree, OBJECTHANDLE handle);
- static FCDECL2(VOID, nSetPrimary, OBJECTHANDLE handle, Object *primary);
- static FCDECL2(VOID, nSetSecondary, OBJECTHANDLE handle, Object *secondary);
+ static FCDECL2(OBJECTHANDLE, nInitialize, Object *primary, Object *secondary);
+ static FCDECL1(Object *, nGetPrimary, OBJECTHANDLE handle);
+ static FCDECL2(Object *, nGetPrimaryAndSecondary, OBJECTHANDLE handle, Object **outSecondary);
+ static FCDECL1(VOID, nFree, OBJECTHANDLE handle);
+ static FCDECL2(VOID, nSetPrimary, OBJECTHANDLE handle, Object *primary);
+ static FCDECL2(VOID, nSetSecondary, OBJECTHANDLE handle, Object *secondary);
};
#endif