Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
9a2c2ed5
Commit
9a2c2ed5
authored
Jan 24, 2012
by
Austin English
Committed by
Alexandre Julliard
Jan 25, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Add a stub for AddConsoleAliasA/W.
parent
a52f8809
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
2 deletions
+16
-2
console.c
dlls/kernel32/console.c
+14
-0
kernel32.spec
dlls/kernel32/kernel32.spec
+2
-2
No files found.
dlls/kernel32/console.c
View file @
9a2c2ed5
...
...
@@ -3201,3 +3201,17 @@ VOID WINAPI ExpungeConsoleCommandHistoryW(LPCWSTR unknown)
FIXME
(
": (%s) stub!
\n
"
,
debugstr_w
(
unknown
));
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
}
BOOL
WINAPI
AddConsoleAliasA
(
LPSTR
source
,
LPSTR
target
,
LPSTR
exename
)
{
FIXME
(
": (%s, %s, %s) stub!
\n
"
,
debugstr_a
(
source
),
debugstr_a
(
target
),
debugstr_a
(
exename
));
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
BOOL
WINAPI
AddConsoleAliasW
(
LPWSTR
source
,
LPWSTR
target
,
LPWSTR
exename
)
{
FIXME
(
": (%s, %s, %s) stub!
\n
"
,
debugstr_w
(
source
),
debugstr_w
(
target
),
debugstr_w
(
exename
));
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
dlls/kernel32/kernel32.spec
View file @
9a2c2ed5
...
...
@@ -138,8 +138,8 @@
@ stdcall ActivateActCtx(ptr ptr)
@ stdcall AddAtomA(str)
@ stdcall AddAtomW(wstr)
@ st
ub AddConsoleAliasA
@ st
ub AddConsoleAliasW
@ st
dcall AddConsoleAliasA(str str str)
@ st
dcall AddConsoleAliasW(wstr wstr wstr)
# @ stub AddLocalAlternateComputerNameA
# @ stub AddLocalAlternateComputerNameW
@ stdcall AddRefActCtx(ptr)
...
...
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