VirtualBox

Changeset 59385 in vbox for trunk/src/VBox/Main/glue


Ignore:
Timestamp:
Jan 18, 2016 5:37:59 PM (9 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
105078
Message:

VBoxProxyStub,comregister,glue: Added a second proxy dll for older 64-bit windows versions since we're having trouble convincing MIDL to produce code that works with XP64/W2K3 without indicating that we're targetting windows 2000 and dropping the ndr64/all protocol option. Using the legacy proxy stub for vista and windows server 2008 too, since there was some potentially interesting changes introduced with windows 7 that we might benefit from.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/glue/initterm.cpp

    r59368 r59385  
    1919#if !defined(VBOX_WITH_XPCOM)
    2020
     21# include <iprt/nt/nt-and-windows.h>
    2122# include <objbase.h>
    2223
     
    254255        int vrc = RTPathAppPrivateArch(szPath, sizeof(szPath));
    255256        if (RT_SUCCESS(vrc))
     257        {
    256258#  ifndef VBOX_IN_32_ON_64_MAIN_API
    257             rc = RTPathAppend(szPath, sizeof(szPath), "VBoxProxyStub.dll");
     259            rc = RTPathAppend(szPath, sizeof(szPath),
     260#   if ARCH_BITS == 64
     261                                 RT_MAKE_U64(((PKUSER_SHARED_DATA)MM_SHARED_USER_DATA_VA)->NtMinorVersion,
     262                                             ((PKUSER_SHARED_DATA)MM_SHARED_USER_DATA_VA)->NtMajorVersion)
     263                              >= RT_MAKE_U64(1/*Lo*/,6/*Hi*/)
     264                              ? "VBoxProxyStub.dll" : "VBoxProxyStubLegacy.dll"
     265#   else
     266                              "VBoxProxyStub.dll"
     267#   endif
     268                              );
    258269#  else
    259270            rc = RTPathAppend(szPath, sizeof(szPath), "x86\\VBoxProxyStub-x86.dll");
    260271#  endif
     272        }
    261273        if (RT_SUCCESS(vrc))
    262274        {
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette