Changeset 2820 for trunk/src/comctl32/propsheet.c
- Timestamp:
- Feb 18, 2000, 6:13:39 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/comctl32/propsheet.c
r2782 r2820 1 /* $Id: propsheet.c,v 1.1 8 2000-02-14 17:31:39cbratschi Exp $ */1 /* $Id: propsheet.c,v 1.19 2000-02-18 17:13:38 cbratschi Exp $ */ 2 2 /* 3 3 * Property Sheets … … 1481 1481 break; 1482 1482 default: 1483 //FIXME(propsheet, "Invalid button index %d\n", buttonID);1483 //FIXME(propsheet, "Invalid button index %d\n", buttonID); 1484 1484 break; 1485 1485 } … … 1934 1934 BYTE* pByte; 1935 1935 1936 dprintf(("COMCTL32: PropertySheetA")); 1937 1936 1938 PROPSHEET_CollectSheetInfo(lppsh, psInfo); 1937 1939 … … 1964 1966 INT WINAPI PropertySheetW(LPCPROPSHEETHEADERW propertySheetHeader) 1965 1967 { 1966 // FIXME(propsheet, "(%p): stub\n", propertySheetHeader);1968 dprintf(("COMCTL32: PropertySheetW - empty stub!")); 1967 1969 1968 1970 return -1; … … 1976 1978 { 1977 1979 PROPSHEETPAGEA* ppsp = COMCTL32_Alloc(sizeof(PROPSHEETPAGEA)); 1980 1981 dprintf(("COMCTL32: CreatePropertySheetPageA")); 1978 1982 1979 1983 *ppsp = *lpPropSheetPage; … … 1999 2003 HPROPSHEETPAGE WINAPI CreatePropertySheetPageW(LPCPROPSHEETPAGEW lpPropSheetPage) 2000 2004 { 2001 // FIXME(propsheet, "(%p): stub\n", lpPropSheetPage);2005 dprintf(("COMCTL32: CreatePropertySheetPageW - empty stub!")); 2002 2006 2003 2007 return 0; … … 2010 2014 { 2011 2015 PROPSHEETPAGEA *psp = (PROPSHEETPAGEA *)hPropPage; 2016 2017 dprintf(("COMCTL32: DestroyPropertySheetPage")); 2012 2018 2013 2019 if (!psp) … … 2410 2416 2411 2417 case PSM_SETTITLEW: 2412 FIXME("Unimplemented msg PSM_SETTITLE32W\n");2418 //FIXME("Unimplemented msg PSM_SETTITLE32W\n"); 2413 2419 return 0; 2414 2420 case PSM_SETCURSELID: 2415 FIXME("Unimplemented msg PSM_SETCURSELID\n");2421 //FIXME("Unimplemented msg PSM_SETCURSELID\n"); 2416 2422 return 0; 2417 2423 case PSM_SETFINISHTEXTW: 2418 FIXME("Unimplemented msg PSM_SETFINISHTEXT32W\n");2424 //FIXME("Unimplemented msg PSM_SETFINISHTEXT32W\n"); 2419 2425 return 0; 2420 2426
Note:
See TracChangeset
for help on using the changeset viewer.