Changeset 38636 in vbox for trunk/src/libs/xpcom18a4/python
- Timestamp:
- Sep 5, 2011 1:49:45 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/xpcom18a4/python/src/module/_xpcom.cpp
r31604 r38636 781 781 782 782 #if defined(VBOX_PATH_APP_PRIVATE_ARCH) && defined(VBOX_PATH_SHARED_LIBS) 783 rc = RTR3Init ();783 rc = RTR3InitDll(0); 784 784 #else 785 785 const char *home = getenv("VBOX_PROGRAM_PATH"); … … 789 789 memcpy(exepath, home, len); 790 790 memcpy(exepath + len, "/pythonfake", sizeof("/pythonfake")); 791 rc = RTR3Init WithProgramPath(exepath);791 rc = RTR3InitEx(RTR3INIT_VER_CUR, RTR3INIT_FLAGS_DLL, 0, NULL, exepath); 792 792 } else { 793 rc = RTR3Init ();793 rc = RTR3InitDll(0); 794 794 } 795 795 #endif
Note:
See TracChangeset
for help on using the changeset viewer.