Code styling:

[NDK]: Make a #define value look less "magical".
[ARC]: Write "BaseDllName" using the regular case used in other parts of ReactOS' code.

svn path=/trunk/; revision=74644
This commit is contained in:
Hermès Bélusca-Maïto 2017-05-24 23:52:56 +00:00
parent d452b9b684
commit 7ee1b6a5f5
2 changed files with 2 additions and 2 deletions

View file

@ -124,7 +124,7 @@ typedef enum _CM_SHARE_DISPOSITION
#define CM_BOOT_FLAG_SMSS 0x0000
#define CM_BOOT_FLAG_SETUP 0x0001
#define CM_BOOT_FLAG_ACCEPTED 0x0002
#define CM_BOOT_FLAG_MAX 0x03E9
#define CM_BOOT_FLAG_MAX (CM_BOOT_FLAG_ACCEPTED + 999)
#ifdef NTOS_MODE_USER

View file

@ -73,7 +73,7 @@ typedef struct _DETECTED_DEVICE
BOOLEAN ThirdPartyOptionSelected;
ULONG FileTypeBits;
PDETECTED_DEVICE_FILE Files;
PCHAR BasedllName;
PCHAR BaseDllName;
BOOLEAN MigratedDriver;
PPNP_HARDWARE_ID HardwareIds;
} DETECTED_DEVICE, *PDETECTED_DEVICE;