About physical memory grow large

Sysprogs forums Forums WinCDEmu About physical memory grow large

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #277
    wzqiang1006
    Participant

    I used V3.4 source code to build, I found the problem exist.
    I used BazisPortableCDBus.sys which PortableWinCDEmu-3.4.exe released in C:WindowsSystem32driversBazisPortableCDBus.sys,it work good. I build ..WinCDEmu-3.4BazisPortableCDBusBazisPortableCDBus.sln to create BazisPortableCDBus.sys,I used it, but I found the problem exist.
    So I think you updated the PortableWinCDEmu-3.4.exe,but don’t update the source code. Am I right? How do I modify the source code?
    Very anxious.Look forward to your reply.Thanks.

    #1638
    support
    Keymaster

    Please ensure you are using the latest version of BazisLib. The problem was related to the default file opening flags.

    #1639
    wzqiang1006
    Participant

    I used BazisLib-2.5.1.exe. But The problem also existed. I downloaded the lasted version one month ago. How can I check the flags.
    Very anxious. Thank you very much bazis.

    #1640
    support
    Keymaster

    Hi, please don’t create multiple topics regarding the same problem. Check the default BazisLib::DDK::File flags.

    #1641
    wzqiang1006
    Participant

    I’m sorry to that.
    You said the default BazisLib::DDK::File flags.I found the Constructor(c:OpenSourceBazisLibbzsddkfile.h).And I found C:OpenSourceBazisLibbzsddkdevice.cpp: File f(pLinkPath, FastFileFlags::OpenReadWrite, &st); But I don’t konw how to modify it.Can you tell me more how to modify it.Thank you very much.
    _File(const FilePath &Path,
    FileFlags::FileAccess Access = FileFlags::ReadAccess,
    FileFlags::OpenMode OpenMode = FileFlags::OpenExisting,
    FileFlags::ShareMode ShareMode = FileFlags::ShareRead,
    FileFlags::FileAttribute Attributes = FileFlags::NormalFile,
    ActionStatus *pStatus = NULL,
    ULONG AdditionalFlags = kDefaultAdditionalFlags)
    {
    Initialize(Path, Access, OpenMode, ShareMode, Attributes, pStatus, AdditionalFlags, 0);
    }

    _File(const FilePath &Path,
    FastFileFlags::OpenMode Mode,
    ActionStatus *pStatus = NULL,
    ULONG AdditionalFlags = kDefaultAdditionalFlags,
    unsigned AdditionalObjecAttributes = 0) //e.g. OBJ_FORCE_ACCESS_CHECK
    {
    if (!FileModeHelpers::IsValidFastOpenMode(Mode))
    {
    m_hFile = 0;
    ASSIGN_STATUS(pStatus, InvalidParameter);
    return;
    }
    Initialize(Path,
    FileModeHelpers::AccessFromFastOpenMode(Mode),
    FileModeHelpers::OpenModeFromFastOpenMode(Mode),
    FileModeHelpers::ShareModeFromFastOpenMode(Mode),
    FileModeHelpers::FileAttributeFromFastOpenMode(Mode),
    pStatus,
    AdditionalFlags,
    AdditionalObjecAttributes);
    }

    #1642
    wzqiang1006
    Participant

    Do you seen this?Please give me more infomation.

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.