mirror of
https://github.com/reactos/wine.git
synced 2024-11-26 13:10:28 +00:00
0c0e3bebb8
Lots of new stubs.
66 lines
1.5 KiB
C
66 lines
1.5 KiB
C
/*
|
|
* Property Sheets
|
|
*
|
|
* Copyright 1998 Francis Beaudet
|
|
*
|
|
* TODO:
|
|
* - All the functions are simply stubs
|
|
*
|
|
*/
|
|
|
|
#include "windows.h"
|
|
#include "commctrl.h"
|
|
#include "win.h"
|
|
#include "debug.h"
|
|
|
|
/*****************************************************************
|
|
* PropertySheet32A (COMCTL32.84)
|
|
*/
|
|
INT32 WINAPI PropertySheet32A(LPCPROPSHEETHEADER32A propertySheetHeader)
|
|
{
|
|
FIXME(commctrl, "(%p): stub\n", propertySheetHeader);
|
|
|
|
return -1;
|
|
}
|
|
|
|
/*****************************************************************
|
|
* PropertySheet32W (COMCTL32.85)
|
|
*/
|
|
INT32 WINAPI PropertySheet32W(LPCPROPSHEETHEADER32W propertySheetHeader)
|
|
{
|
|
FIXME(commctrl, "(%p): stub\n", propertySheetHeader);
|
|
|
|
return -1;
|
|
}
|
|
|
|
/*****************************************************************
|
|
* CreatePropertySheetPage32A (COMCTL32.19)
|
|
*/
|
|
HPROPSHEETPAGE WINAPI CreatePropertySheetPage32A(LPCPROPSHEETPAGE32A lpPropSheetPage)
|
|
{
|
|
FIXME(commctrl, "(%p): stub\n", lpPropSheetPage);
|
|
|
|
return 0;
|
|
}
|
|
|
|
/*****************************************************************
|
|
* CreatePropertySheetPage32W (COMCTL32.20)
|
|
*/
|
|
HPROPSHEETPAGE WINAPI CreatePropertySheetPage32W(LPCPROPSHEETPAGE32W lpPropSheetPage)
|
|
{
|
|
FIXME(commctrl, "(%p): stub\n", lpPropSheetPage);
|
|
|
|
return 0;
|
|
}
|
|
|
|
/*****************************************************************
|
|
* DestroyPropertySheetPage32 (COMCTL32.24)
|
|
*/
|
|
BOOL32 WINAPI DestroyPropertySheetPage32(HPROPSHEETPAGE hPropPage)
|
|
{
|
|
FIXME(commctrl, "(0x%x): stub\n", hPropPage);
|
|
|
|
return FALSE;
|
|
}
|
|
|