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
06bd384c
Commit
06bd384c
authored
Sep 04, 2020
by
Vitaly Lipatov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
commit 12.2.2 upon wine-1.5.15
parent
bd1e3104
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
0 deletions
+17
-0
process.c
dlls/kernel32/process.c
+17
-0
No files found.
dlls/kernel32/process.c
View file @
06bd384c
...
...
@@ -3922,7 +3922,24 @@ HRESULT WINAPI RegisterApplicationRecoveryCallback(APPLICATION_RECOVERY_CALLBACK
*/
BOOL
WINAPI
GetNumaHighestNodeNumber
(
PULONG
highestnode
)
{
char
name
[
MAX_PATH
],
*
p
;
FIXME
(
"(%p): stub
\n
"
,
highestnode
);
GetModuleFileNameA
(
GetModuleHandleA
(
NULL
),
name
,
sizeof
(
name
));
p
=
strrchr
(
name
,
'\\'
);
if
(
p
)
++
p
;
else
p
=
name
;
TRACE
(
"CubeWorld hack,
\"
%s
\"
==
\"
Cube.exe
\"
?
\n
"
,
p
);
if
(
strcasecmp
(
p
,
"Cube.exe"
)
==
0
){
TRACE
(
"Doing CubeWorld hack
\n
"
);
if
(
highestnode
)
*
highestnode
=
1
;
return
TRUE
;
}
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
...
...
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