mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 17:16:04 +00:00
[BOOTDATA][SETUPLIB][REACTOS] INF support fixes.
- BOOTDATA: Use standard INF signature string, so that they can be opened successfully using ReactOS' or Windows' setupapi.dll with the INF_STYLE_WIN4 style. - SETUPLIB: Use the correct INF_STYLE_* INF styles in SpInfOpenInfFile() calls. - REACTOS : Switch thread locale to user-specified LocaleId when calling SetupOpenInfFileW(), so that the correct localized strings are used.
This commit is contained in:
parent
42758b303b
commit
86f31289ef
14 changed files with 42 additions and 20 deletions
|
@ -5,7 +5,7 @@
|
|||
; Data licensed under MPL 2.0 <https://mozilla.org/MPL/2.0/>
|
||||
|
||||
[Version]
|
||||
Signature = "$ReactOS$"
|
||||
Signature = "$Windows NT$"
|
||||
|
||||
[AddReg]
|
||||
; "SSL.com EV Root Certification Authority ECC" (664 bytes)
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
[Version]
|
||||
Signature = "$ReactOS$"
|
||||
Signature = "$Windows NT$"
|
||||
|
||||
[AddReg]
|
||||
BCD,"BCD00000000\Description\Control","System",0x00010001,1
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
[Version]
|
||||
Signature="$ReactOS$"
|
||||
Signature = "$Windows NT$"
|
||||
|
||||
[AddReg]
|
||||
HKLM,"SOFTWARE\Classes",,0x00000010
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
[Version]
|
||||
Signature="$ReactOS$"
|
||||
Signature = "$Windows NT$"
|
||||
|
||||
[AddReg]
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
[Version]
|
||||
Signature = "$ReactOS$"
|
||||
Signature = "$Windows NT$"
|
||||
|
||||
[AddReg]
|
||||
; Enable _one_ driver per section by removing the leading semicolon.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
[Version]
|
||||
Signature="$ReactOS$"
|
||||
Signature = "$Windows NT$"
|
||||
|
||||
[AddReg]
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
[Version]
|
||||
Signature = "$ReactOS$"
|
||||
Signature = "$Windows NT$"
|
||||
|
||||
[AddReg]
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
[Version]
|
||||
Signature = "$ReactOS$"
|
||||
Signature = "$Windows NT$"
|
||||
|
||||
[DelReg]
|
||||
|
||||
|
|
|
@ -11,7 +11,8 @@
|
|||
|
||||
.InfBegin
|
||||
[Version]
|
||||
Signature = "$ReactOS$"
|
||||
Signature = "$Windows NT$"
|
||||
;Signature = "$ReactOS$"
|
||||
|
||||
; Directories relative to the installation directory.
|
||||
; For specifying absolute directories, use the SystemPartitionFiles section,
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
[Version]
|
||||
Signature = "$ReactOS$"
|
||||
Signature = "$Windows NT$"
|
||||
|
||||
[DelReg]
|
||||
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
[Version]
|
||||
Signature = "$ReactOS$"
|
||||
Signature = "$Windows NT$"
|
||||
;Signature = "$ReactOS$"
|
||||
|
||||
;
|
||||
; The [SourceDisksNames] section lists all the available installation media
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue