Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
ab88743c
Commit
ab88743c
authored
Jun 20, 2005
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Moved a few registry keys from HKLM\Software\Wine to
HKCU\Software\Wine for consistency.
parent
0ddb8d11
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
10 additions
and
10 deletions
+10
-10
d3d8_main.c
dlls/d3d8/d3d8_main.c
+2
-2
driver.c
dlls/gdi/driver.c
+2
-2
shdocvw_main.c
dlls/shdocvw/shdocvw_main.c
+2
-2
user_main.c
dlls/user/user_main.c
+2
-2
wined3d_main.c
dlls/wined3d/wined3d_main.c
+2
-2
No files found.
dlls/d3d8/d3d8_main.c
View file @
ab88743c
...
...
@@ -82,8 +82,8 @@ BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD fdwReason, LPVOID lpv)
wine_tsx11_lock_ptr
=
(
void
*
)
GetProcAddress
(
mod
,
"wine_tsx11_lock"
);
wine_tsx11_unlock_ptr
=
(
void
*
)
GetProcAddress
(
mod
,
"wine_tsx11_unlock"
);
}
/* @@ Wine registry key: HK
LM
\Software\Wine\Direct3D */
if
(
!
RegOpenKeyA
(
HKEY_
LOCAL_MACHINE
,
"Software
\\
Wine
\\
Direct3D"
,
&
hkey
)
)
/* @@ Wine registry key: HK
CU
\Software\Wine\Direct3D */
if
(
!
RegOpenKeyA
(
HKEY_
CURRENT_USER
,
"Software
\\
Wine
\\
Direct3D"
,
&
hkey
)
)
{
if
(
!
RegQueryValueExA
(
hkey
,
"VertexShaderMode"
,
0
,
NULL
,
buffer
,
&
size
)
)
{
...
...
dlls/gdi/driver.c
View file @
ab88743c
...
...
@@ -222,8 +222,8 @@ static struct graphics_driver *load_display_driver(void)
}
strcpy
(
buffer
,
"x11,tty"
);
/* default value */
/* @@ Wine registry key: HK
LM
\Software\Wine\Drivers */
if
(
!
RegOpenKeyA
(
HKEY_
LOCAL_MACHINE
,
"Software
\\
Wine
\\
Drivers"
,
&
hkey
))
/* @@ Wine registry key: HK
CU
\Software\Wine\Drivers */
if
(
!
RegOpenKeyA
(
HKEY_
CURRENT_USER
,
"Software
\\
Wine
\\
Drivers"
,
&
hkey
))
{
DWORD
type
,
count
=
sizeof
(
buffer
);
RegQueryValueExA
(
hkey
,
"Graphics"
,
0
,
&
type
,
buffer
,
&
count
);
...
...
dlls/shdocvw/shdocvw_main.c
View file @
ab88743c
...
...
@@ -318,8 +318,8 @@ static DWORD WINAPI ThreadFunc( LPVOID info )
/* find the name of the thing to download */
szUrl
[
0
]
=
0
;
/* @@ Wine registry key: HK
LM
\Software\Wine\shdocw */
r
=
RegOpenKeyW
(
HKEY_
LOCAL_MACHINE
,
szMozDlPath
,
&
hkey
);
/* @@ Wine registry key: HK
CU
\Software\Wine\shdocw */
r
=
RegOpenKeyW
(
HKEY_
CURRENT_USER
,
szMozDlPath
,
&
hkey
);
if
(
r
==
ERROR_SUCCESS
)
{
sz
=
MAX_PATH
;
...
...
dlls/user/user_main.c
View file @
ab88743c
...
...
@@ -67,8 +67,8 @@ static BOOL load_driver(void)
HKEY
hkey
;
strcpy
(
buffer
,
"x11,tty"
);
/* default value */
/* @@ Wine registry key: HK
LM
\Software\Wine\Drivers */
if
(
!
RegOpenKeyA
(
HKEY_
LOCAL_MACHINE
,
"Software
\\
Wine
\\
Drivers"
,
&
hkey
))
/* @@ Wine registry key: HK
CU
\Software\Wine\Drivers */
if
(
!
RegOpenKeyA
(
HKEY_
CURRENT_USER
,
"Software
\\
Wine
\\
Drivers"
,
&
hkey
))
{
DWORD
type
,
count
=
sizeof
(
buffer
);
RegQueryValueExA
(
hkey
,
"Graphics"
,
0
,
&
type
,
buffer
,
&
count
);
...
...
dlls/wined3d/wined3d_main.c
View file @
ab88743c
...
...
@@ -64,8 +64,8 @@ BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD fdwReason, LPVOID lpv)
wine_tsx11_lock_ptr
=
(
void
*
)
GetProcAddress
(
mod
,
"wine_tsx11_lock"
);
wine_tsx11_unlock_ptr
=
(
void
*
)
GetProcAddress
(
mod
,
"wine_tsx11_unlock"
);
}
/* @@ Wine registry key: HK
LM
\Software\Wine\Direct3D */
if
(
!
RegOpenKeyA
(
HKEY_
LOCAL_MACHINE
,
"Software
\\
Wine
\\
Direct3D"
,
&
hkey
)
)
/* @@ Wine registry key: HK
CU
\Software\Wine\Direct3D */
if
(
!
RegOpenKeyA
(
HKEY_
CURRENT_USER
,
"Software
\\
Wine
\\
Direct3D"
,
&
hkey
)
)
{
if
(
!
RegQueryValueExA
(
hkey
,
"VertexShaderMode"
,
0
,
NULL
,
buffer
,
&
size
)
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment