mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
[WinSpool.idl] Add File Info Structure
This is for 2 RPC functions. Update at a later time.
This commit is contained in:
parent
dbaa8b132d
commit
6df223ebdf
1 changed files with 20 additions and 0 deletions
|
@ -834,6 +834,26 @@ typedef [switch_type(DWORD)] union _WINSPOOL_V2_UREPLY_PRINTER
|
|||
}
|
||||
WINSPOOL_V2_UREPLY_PRINTER;
|
||||
|
||||
typedef struct _WINSPOOL_FILE_INFO
|
||||
{
|
||||
BOOL bInheritHandle;
|
||||
HANDLE hSpoolFileHandle;
|
||||
DWORD dwOptions;
|
||||
}
|
||||
WINSPOOL_FILE_INFO_1;
|
||||
|
||||
typedef struct _WINSPOOL_FILE_INFO_CONTAINER
|
||||
{
|
||||
DWORD Level;
|
||||
|
||||
[switch_is(Level)] union
|
||||
{
|
||||
[case(1)]
|
||||
WINSPOOL_FILE_INFO_1 *pFileInfo1;
|
||||
}
|
||||
FileInfo;
|
||||
}
|
||||
WINSPOOL_FILE_INFO_CONTAINER;
|
||||
|
||||
/*
|
||||
* The actual interface
|
||||
|
|
Loading…
Reference in a new issue