Sysprogs forums › Forums › WinCDEmu › About physical memory grow large
- This topic has 5 replies, 2 voices, and was last updated 14 years, 7 months ago by
wzqiang1006.
-
AuthorPosts
-
March 26, 2011 at 08:03 #277
wzqiang1006
ParticipantI 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.March 29, 2011 at 06:28 #1638support
KeymasterPlease ensure you are using the latest version of BazisLib. The problem was related to the default file opening flags.
March 30, 2011 at 01:53 #1639wzqiang1006
ParticipantI 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.March 31, 2011 at 06:46 #1640support
KeymasterHi, please don’t create multiple topics regarding the same problem. Check the default BazisLib::DDK::File flags.
March 31, 2011 at 09:10 #1641wzqiang1006
ParticipantI’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);
}April 2, 2011 at 01:18 #1642wzqiang1006
ParticipantDo you seen this?Please give me more infomation.
-
AuthorPosts
- You must be logged in to reply to this topic.