mirror of
https://github.com/reactos/reactos.git
synced 2025-08-04 02:45:41 +00:00
Synchronize with trunk revision 59636 (just before Alex's CreateProcess revamp).
svn path=/branches/ntvdm/; revision=59665
This commit is contained in:
commit
f66525ee02
404 changed files with 31475 additions and 5237 deletions
|
@ -471,7 +471,7 @@ Return Value:
|
|||
UNICODE_STRING unicodeDeviceName;
|
||||
PFILE_OBJECT fileObject;
|
||||
CCHAR deviceNameBuffer[256];
|
||||
BOOLEAN deviceFound = FALSE;
|
||||
/* BOOLEAN deviceFound = FALSE; See note at the end */
|
||||
PCLASS_DRIVER_EXTENSION DriverExtension;
|
||||
PUNICODE_STRING RegistryPath = Argument2;
|
||||
|
||||
|
@ -578,7 +578,7 @@ Return Value:
|
|||
if (InitializationData->ClassFindDevices(DriverObject, Argument2, InitializationData,
|
||||
portDeviceObject, DriverExtension->PortNumber)) {
|
||||
|
||||
deviceFound = TRUE;
|
||||
/* deviceFound = TRUE; See note at the end */
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -23,7 +23,7 @@ add_library(uniata SHARED ${SOURCE} idedma.rc)
|
|||
if(NOT MSVC)
|
||||
# FIXME: http://www.cmake.org/Bug/view.php?id=12998
|
||||
#allow_warnings(uniata)
|
||||
set_source_files_properties(${SOURCE} PROPERTIES COMPILE_FLAGS "-Wno-error")
|
||||
set_source_files_properties(${SOURCE} PROPERTIES COMPILE_FLAGS "-Wno-error -Wno-unused-but-set-variable -Wno-narrowing")
|
||||
endif()
|
||||
|
||||
add_pch(uniata stdafx.h)
|
||||
|
|
|
@ -44,7 +44,7 @@ BOOLEAN LogMessage(PCHAR szFormat, ...)
|
|||
DbgPrint("\n BusLogic - Creating the file");
|
||||
|
||||
status = ZwCreateFile(&FileHandle,
|
||||
FILE_APPEND_DATA,
|
||||
FILE_APPEND_DATA | SYNCHRONIZE,
|
||||
&objectAttributes,
|
||||
&IoStatus,
|
||||
0,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue