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
3accd8df
Commit
3accd8df
authored
Jan 08, 2004
by
Kevin Koltzau
Committed by
Alexandre Julliard
Jan 08, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Define structs FILEDESCRIPTOR and FILEGROUPDESCRIPTOR used with the
clipboard format CF_FILEGROUPDESCRIPTOR.
parent
af542075
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
51 additions
and
1 deletion
+51
-1
shlobj.h
include/shlobj.h
+51
-1
No files found.
include/shlobj.h
View file @
3accd8df
...
...
@@ -791,7 +791,57 @@ typedef struct _DROPFILES
BOOL
fWide
;
}
DROPFILES
,
*
LPDROPFILES
;
#include <poppack.h>
/*
* Properties of a file in the clipboard
*/
typedef
struct
_FILEDESCRIPTORA
{
DWORD
dwFlags
;
CLSID
clsid
;
SIZEL
sizel
;
POINTL
pointl
;
DWORD
dwFileAttributes
;
FILETIME
ftCreationTime
;
FILETIME
ftLastAccessTime
;
FILETIME
ftLastWriteTime
;
DWORD
nFileSizeHigh
;
DWORD
nFileSizeLow
;
CHAR
cFileName
[
MAX_PATH
];
}
FILEDESCRIPTORA
,
*
LPFILEDESCRIPTORA
;
typedef
struct
_FILEDESCRIPTORW
{
DWORD
dwFlags
;
CLSID
clsid
;
SIZEL
sizel
;
POINTL
pointl
;
DWORD
dwFileAttributes
;
FILETIME
ftCreationTime
;
FILETIME
ftLastAccessTime
;
FILETIME
ftLastWriteTime
;
DWORD
nFileSizeHigh
;
DWORD
nFileSizeLow
;
WCHAR
cFileName
[
MAX_PATH
];
}
FILEDESCRIPTORW
,
*
LPFILEDESCRIPTORW
;
DECL_WINELIB_TYPE_AW
(
FILEDESCRIPTOR
)
DECL_WINELIB_TYPE_AW
(
LPFILEDESCRIPTOR
)
/*
* CF_FILEGROUPDESCRIPTOR clipboard format
*/
typedef
struct
_FILEGROUPDESCRIPTORA
{
UINT
cItems
;
FILEDESCRIPTORA
fgd
[
1
];
}
FILEGROUPDESCRIPTORA
,
*
LPFILEGROUPDESCRIPTORA
;
typedef
struct
_FILEGROUPDESCRIPTORW
{
UINT
cItems
;
FILEDESCRIPTORW
fgd
[
1
];
}
FILEGROUPDESCRIPTORW
,
*
LPFILEGROUPDESCRIPTORW
;
DECL_WINELIB_TYPE_AW
(
FILEGROUPDESCRIPTOR
)
DECL_WINELIB_TYPE_AW
(
LPFILEGROUPDESCRIPTOR
)
#include <poppack.h>
/*****************************************************************************
* IFileSystemBindData interface
...
...
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