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
aff1b331
Commit
aff1b331
authored
May 27, 2006
by
Detlef Riekenberg
Committed by
Alexandre Julliard
May 28, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winspool: Documentation for GetPrintProcessorDirectory.
parent
4ec9e110
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
35 additions
and
0 deletions
+35
-0
info.c
dlls/winspool.drv/info.c
+35
-0
No files found.
dlls/winspool.drv/info.c
View file @
aff1b331
...
...
@@ -1825,6 +1825,14 @@ end:
/*****************************************************************************
* GetPrintProcessorDirectoryA [WINSPOOL.@]
*
* Return the PATH for the Print-Processors
*
* See GetPrintProcessorDirectoryW.
*
* NOTES
* On NT, the returned ANSI-Data need the same Size as the Unicode-Version
*
*/
BOOL
WINAPI
GetPrintProcessorDirectoryA
(
LPSTR
server
,
LPSTR
env
,
DWORD
level
,
LPBYTE
Info
,
...
...
@@ -1837,6 +1845,33 @@ BOOL WINAPI GetPrintProcessorDirectoryA(LPSTR server, LPSTR env,
/*****************************************************************************
* GetPrintProcessorDirectoryW [WINSPOOL.@]
*
* Return the PATH for the Print-Processors
*
* PARAMS
* server [I] Servername (NT only) or NULL (local Computer)
* env [I] Printing-Environment (see below) or NULL (Default)
* level [I] Structure-Level (must be 1)
* Info [O] PTR to Buffer that receives the Result
* cbBuf [I] Size of Buffer at "Info"
* needed [O] PTR to DWORD that receives the size in Bytes used /
* required for the Buffer at "Info"
*
* RETURNS
* Success: TRUE and in pcbNeeded the Bytes used in pPrintProcessorInfo
* Failure: FALSE and in pcbNeeded the Bytes required for pPrintProcessorInfo,
* if cbBuf is too small
*
* Native Values returned in pPrintProcessorInfo on Success:
*| NT(Windows NT x86): "%winsysdir%\\spool\\PRTPROCS\\w32x86"
*| NT(Windows 4.0): "%winsysdir%\\spool\\PRTPROCS\\win40"
*| win9x(Windows 4.0): "%winsysdir%"
*
* "%winsysdir%" is the Value from GetSystemDirectoryW()
*
* BUGS
*- Only NULL or "" is supported for pName
*
*/
BOOL
WINAPI
GetPrintProcessorDirectoryW
(
LPWSTR
server
,
LPWSTR
env
,
DWORD
level
,
LPBYTE
Info
,
...
...
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