96 lines
2.7 KiB
C
96 lines
2.7 KiB
C
/*
|
|
* Shell Library definitions
|
|
*/
|
|
#ifndef __WINE_SHELL_H
|
|
#define __WINE_SHELL_H
|
|
|
|
#include "windef.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif /* defined(__cplusplus) */
|
|
|
|
/****************************************************************************
|
|
* shell 16
|
|
*/
|
|
extern void SHELL_LoadRegistry(void);
|
|
|
|
/* global functions used from shell32 */
|
|
extern HINSTANCE SHELL_FindExecutable(LPCSTR,LPCSTR ,LPSTR);
|
|
extern HGLOBAL16 WINAPI InternalExtractIcon16(HINSTANCE16,LPCSTR,UINT16,WORD);
|
|
|
|
/****************************************************************************
|
|
* shell 32
|
|
*/
|
|
/****************************************************************************
|
|
* common return codes
|
|
*/
|
|
#define SHELL_ERROR_SUCCESS 0L
|
|
#define SHELL_ERROR_BADDB 1L
|
|
#define SHELL_ERROR_BADKEY 2L
|
|
#define SHELL_ERROR_CANTOPEN 3L
|
|
#define SHELL_ERROR_CANTREAD 4L
|
|
#define SHELL_ERROR_CANTWRITE 5L
|
|
#define SHELL_ERROR_OUTOFMEMORY 6L
|
|
#define SHELL_ERROR_INVALID_PARAMETER 7L
|
|
#define SHELL_ERROR_ACCESS_DENIED 8L
|
|
|
|
/****************************************************************************
|
|
* common shell file structures
|
|
*/
|
|
/******************************
|
|
* DRAG&DROP API
|
|
*/
|
|
typedef struct { /* structure for dropped files */
|
|
WORD wSize;
|
|
POINT16 ptMousePos;
|
|
BOOL16 fInNonClientArea;
|
|
/* memory block with filenames follows */
|
|
} DROPFILESTRUCT16, *LPDROPFILESTRUCT16;
|
|
|
|
typedef struct { /* structure for dropped files */
|
|
DWORD lSize;
|
|
POINT ptMousePos;
|
|
BOOL fInNonClientArea;
|
|
BOOL fWideChar;
|
|
/* memory block with filenames follows */
|
|
} DROPFILESTRUCT, *LPDROPFILESTRUCT;
|
|
|
|
|
|
/****************************************************************************
|
|
* SHITEMID, ITEMIDLIST, PIDL API
|
|
*/
|
|
#include "pshpack1.h"
|
|
typedef struct
|
|
{ WORD cb; /* nr of bytes in this item */
|
|
BYTE abID[1];/* first byte in this item */
|
|
} SHITEMID,*LPSHITEMID;
|
|
typedef LPSHITEMID const LPCSHITEMID;
|
|
|
|
typedef struct
|
|
{ SHITEMID mkid; /* first itemid in list */
|
|
} ITEMIDLIST,*LPITEMIDLIST,*LPCITEMIDLIST;
|
|
#include "poppack.h"
|
|
|
|
BOOL WINAPI SHGetPathFromIDListA (LPCITEMIDLIST pidl,LPSTR pszPath);
|
|
BOOL WINAPI SHGetPathFromIDListW (LPCITEMIDLIST pidl,LPWSTR pszPath);
|
|
#define SHGetPathFromIDList WINELIB_NAME_AW(SHGetPathFromIDList)
|
|
|
|
/****************************************************************************
|
|
* SHAddToRecentDocs API
|
|
*/
|
|
#define SHARD_PIDL 0x00000001L
|
|
#define SHARD_PATH 0x00000002L
|
|
|
|
DWORD WINAPI SHAddToRecentDocs(UINT uFlags, LPCVOID pv);
|
|
|
|
/****************************************************************************
|
|
* other functions
|
|
*/
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern "C" */
|
|
#endif /* defined(__cplusplus) */
|
|
|
|
#endif /* __WINE_SHELL_H */
|