diff options
author | Danny Smith <dannysmith@users.sourceforge.net> | 2003-08-15 03:04:25 +0000 |
---|---|---|
committer | Danny Smith <dannysmith@users.sourceforge.net> | 2003-08-15 03:04:25 +0000 |
commit | b98580a7169f81eb5d3559233251efae1cd213ee (patch) | |
tree | d6b4853237bd5dd5524f53d212f9b132313854f5 /winsup/w32api/include/shlguid.h | |
parent | 37f0dc7a056b2e22c1224f2315b084fe898f615c (diff) | |
download | cygnal-b98580a7169f81eb5d3559233251efae1cd213ee.tar.gz cygnal-b98580a7169f81eb5d3559233251efae1cd213ee.tar.bz2 cygnal-b98580a7169f81eb5d3559233251efae1cd213ee.zip |
2003-08-15 Martin Fuchs <Martin-Fuchs@gmx.net>
* include/shguid.h (CLSID_DragDropHelper, IID_IDropTargetHelper,
IID_IDragSourceHelper): Declare.
* lib/shell32.c (CLSID_DragDropHelper, IID_IDropTargetHelper,
IID_IDragSourceHelper): Define.
Diffstat (limited to 'winsup/w32api/include/shlguid.h')
-rw-r--r-- | winsup/w32api/include/shlguid.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/winsup/w32api/include/shlguid.h b/winsup/w32api/include/shlguid.h index 735ad42bc..b6d65cc13 100644 --- a/winsup/w32api/include/shlguid.h +++ b/winsup/w32api/include/shlguid.h @@ -1,6 +1,6 @@ #ifndef _SHLGUID_H #define _SHLGUID_H -#if __GNUC__ >=3 +#if __GNUC__ >= 3 #pragma GCC system_header #endif @@ -57,6 +57,9 @@ extern const GUID CLSID_StdHyperLink; extern const GUID CLSID_FileTypes; extern const GUID CLSID_InternetShortcut; extern const GUID IID_IUniformResourceLocator; +extern const GUID CLSID_DragDropHelper; +extern const GUID IID_IDropTargetHelper; +extern const GUID IID_IDragSourceHelper; #ifdef UNICODE #define IID_IFileViewer IID_IFileViewerW #define IID_IShellLink IID_IShellLinkW @@ -72,7 +75,9 @@ extern const GUID IID_IUniformResourceLocator; #define IID_IShellExecuteHook IID_IShellExecuteHookA #define IID_INewShortcutHook IID_INewShortcutHookA #endif + #ifdef __cplusplus } #endif + #endif |