mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 10:31:43 +00:00
[SHELL32][SDK] Implement SHOpenPropSheetA (#5830)
- Add SHOpenPropSheetA and SHOpenPropSheetW prototypes to <shlobj.h>. - Implement SHOpenPropSheetA function.
This commit is contained in:
parent
8f6b016963
commit
dcc9a2d8f3
3 changed files with 70 additions and 28 deletions
|
@ -340,6 +340,25 @@ int WINAPI PathCleanupSpec(_In_opt_ LPCWSTR, _Inout_ LPWSTR);
|
|||
HINSTANCE WINAPI SHGetShellStyleHInstance(VOID);
|
||||
#endif
|
||||
|
||||
BOOL WINAPI
|
||||
SHOpenPropSheetA(
|
||||
_In_opt_z_ LPCSTR pszCaption,
|
||||
_In_opt_ HKEY *ahKeys,
|
||||
_In_ UINT cKeys,
|
||||
_In_ const CLSID *pclsidDefault,
|
||||
_In_ IDataObject *pDataObject,
|
||||
_In_opt_ IShellBrowser *pShellBrowser,
|
||||
_In_opt_z_ LPCSTR pszStartPage);
|
||||
BOOL WINAPI
|
||||
SHOpenPropSheetW(
|
||||
_In_opt_z_ LPCWSTR pszCaption,
|
||||
_In_opt_ HKEY *ahKeys,
|
||||
_In_ UINT cKeys,
|
||||
_In_ const CLSID *pclsidDefault,
|
||||
_In_ IDataObject *pDataObject,
|
||||
_In_opt_ IShellBrowser *pShellBrowser,
|
||||
_In_opt_z_ LPCWSTR pszStartPage);
|
||||
|
||||
/*****************************************************************************
|
||||
* IContextMenu interface
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue