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
cdb5f358
Commit
cdb5f358
authored
Oct 17, 2007
by
Detlef Riekenberg
Committed by
Alexandre Julliard
Oct 18, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
spoolss: Add a stub for BuildOtherNamesFromMachineName.
parent
6b00b723
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
1 deletion
+13
-1
spoolss.spec
dlls/spoolss/spoolss.spec
+1
-1
spoolss_main.c
dlls/spoolss/spoolss_main.c
+12
-0
No files found.
dlls/spoolss/spoolss.spec
View file @
cdb5f358
...
...
@@ -14,7 +14,7 @@
@ stub AddPrinterW
@ stdcall AllocSplStr(wstr)
@ stub AppendPrinterNotifyInfoData
@ st
ub BuildOtherNamesFromMachineName
@ st
dcall BuildOtherNamesFromMachineName(ptr ptr)
@ stub CallDrvDevModeConversion
@ stub CallRouterFindFirstPrinterChangeNotification
@ stub ClosePrinter
...
...
dlls/spoolss/spoolss_main.c
View file @
cdb5f358
...
...
@@ -80,6 +80,18 @@ LPWSTR WINAPI AllocSplStr(LPCWSTR pwstr)
}
/******************************************************************
* BuildOtherNamesFromMachineName [SPOOLSS.@]
*/
BOOL
WINAPI
BuildOtherNamesFromMachineName
(
LPVOID
*
ptr1
,
LPVOID
*
ptr2
)
{
FIXME
(
"(%p, %p) stub
\n
"
,
ptr1
,
ptr2
);
*
ptr1
=
NULL
;
*
ptr2
=
NULL
;
return
FALSE
;
}
/******************************************************************
* DllAllocSplMem [SPOOLSS.@]
*
* Allocate cleared memory from the spooler heap
...
...
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