- Timestamp:
- Nov 5, 1999, 2:01:33 PM (26 years ago)
- Location:
- trunk/src/comctl32
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/comctl32/comctl32.h
r1058 r1615 1 /* $Id: comctl32.h,v 1. 8 1999-09-26 11:01:08achimha Exp $ */1 /* $Id: comctl32.h,v 1.9 1999-11-05 13:01:32 achimha Exp $ */ 2 2 /* 3 3 * Win32 common controls implementation … … 24 24 #include "wineuni.h" 25 25 26 #define TRACE(x) 27 #define FIXME(x) 28 #define WARN(x) 29 30 #define _OS2WIN_H 31 #define NO_ULONG 32 #include <misc.h> 26 33 27 34 #ifdef __cplusplus -
trunk/src/comctl32/comctl32undoc.c
r1565 r1615 1 /* $Id: comctl32undoc.c,v 1.1 3 1999-11-02 21:44:01achimha Exp $ */1 /* $Id: comctl32undoc.c,v 1.14 1999-11-05 13:01:32 achimha Exp $ */ 2 2 /* 3 3 * Undocumented functions from COMCTL32.DLL … … 1831 1831 */ 1832 1832 LPWSTR WINAPI COMCTL32_StrChrW( LPCWSTR lpStart, WORD wMatch) { 1833 dprintf(("COMCTL32: StrChrW - unimplemented stub\n")); 1833 1834 // return CRTDLL_wcschr(lpStart, wMatch); 1835 return 0; 1834 1836 } 1835 1837 … … 1847 1849 */ 1848 1850 INT WINAPI COMCTL32_StrCmpNW( LPCWSTR lpStr1, LPCWSTR lpStr2, int nChar) { 1851 dprintf(("COMCTL32: StrCmpNW - unimplemented stub\n")); 1849 1852 // return lstrncmpW(lpStr1, lpStr2, nChar); 1853 return 0; 1850 1854 } 1851 1855 … … 1856 1860 INT WINAPI COMCTL32_StrCmpNIW( LPCWSTR lpStr1, LPCWSTR lpStr2, int nChar) { 1857 1861 // FIXME("(%s, %s, %i): stub\n", debugstr_w(lpStr1), debugstr_w(lpStr2), nChar); 1862 dprintf(("COMCTL32: StrCmpNIW - unimplemented stub\n")); 1858 1863 return 0; 1859 1864 } … … 1864 1869 */ 1865 1870 LPSTR WINAPI COMCTL32_StrRChrA( LPCSTR lpStart, LPCSTR lpEnd, WORD wMatch) { 1871 dprintf(("COMCTL32: lstrrchr - unimplemented stub\n")); 1866 1872 // return lstrrchr(lpStart, lpEnd, wMatch); 1873 return 0; 1867 1874 } 1868 1875 … … 1872 1879 */ 1873 1880 LPWSTR WINAPI COMCTL32_StrRChrW( LPCWSTR lpStart, LPCWSTR lpEnd, WORD wMatch) { 1881 dprintf(("COMCTL32: StrRChrW - unimplemented stub\n")); 1874 1882 // return lstrrchrw(lpStart, lpEnd, wMatch); 1883 return 0; 1875 1884 } 1876 1885 … … 1888 1897 */ 1889 1898 LPWSTR WINAPI COMCTL32_StrStrW( LPCWSTR lpFirst, LPCWSTR lpSrch) { 1899 dprintf(("COMCTL32: StrStrW - unimplemented stub\n")); 1890 1900 // return strstrw(lpFirst, lpSrch); 1901 return 0; 1891 1902 } 1892 1903 … … 1897 1908 INT WINAPI COMCTL32_StrSpnW( LPWSTR lpStr, LPWSTR lpSet) { 1898 1909 LPWSTR lpLoop = lpStr; 1910 1911 dprintf(("COMCTL32: StrSpnW - unimplemented stub\n")); 1912 return 0; 1899 1913 1900 1914 /* validate ptr */ … … 1919 1933 BOOL WINAPI comctl32_410( HWND hw, DWORD b, DWORD c, DWORD d) { 1920 1934 1935 dprintf(("COMCTL32: comctl32_410 - unimplemented stub\n")); 1921 1936 //FIXME_(commctrl)("(%x, %lx, %lx, %lx): stub!\n", hw, b, c, d); 1922 1937 … … 1934 1949 1935 1950 //FIXME_(commctrl)("(%lx): stub!\n", a); 1951 dprintf(("COMCTL32: InitMUILanguage - unimplemented stub\n")); 1936 1952 1937 1953 return TRUE; -
trunk/src/comctl32/propsheet.c
r1565 r1615 1 /* $Id: propsheet.c,v 1.1 1 1999-11-02 21:44:02achimha Exp $ */1 /* $Id: propsheet.c,v 1.12 1999-11-05 13:01:33 achimha Exp $ */ 2 2 /* 3 3 * Property Sheets … … 890 890 PADDING_INFO padding; 891 891 892 TRACE("index %d\n", index);892 // TRACE("index %d\n", index); 893 893 894 894 if (ppshpage->dwFlags & PSP_DLGINDIRECT) … … 1051 1051 msgResult = SendMessageA(hwndPage, WM_NOTIFY, 0, (LPARAM) &hdr); 1052 1052 1053 TRACE("msg result %ld\n", msgResult);1053 // TRACE("msg result %ld\n", msgResult); 1054 1054 1055 1055 if (msgResult == -1) … … 1082 1082 msgResult = SendMessageA(hwndPage, WM_NOTIFY, 0, (LPARAM) &hdr); 1083 1083 1084 TRACE("msg result %ld\n", msgResult);1084 // TRACE("msg result %ld\n", msgResult); 1085 1085 1086 1086 if (msgResult != 0) … … 1522 1522 1523 1523 if (!psInfo) { 1524 FIXME("No psInfo for propertysheet at windows 0x%04x, returning FALSE...\n", hwndDlg);1524 // FIXME("No psInfo for propertysheet at windows 0x%04x, returning FALSE...\n", hwndDlg); 1525 1525 return FALSE; 1526 1526 } … … 1537 1537 if (index < 0 || index >= psInfo->nPages) 1538 1538 { 1539 TRACE("Could not find page to remove!\n");1539 // TRACE("Could not find page to remove!\n"); 1540 1540 return FALSE; 1541 1541 } 1542 1542 1543 TRACE("total pages %d removing page %d active page %d\n",1544 psInfo->nPages, index, psInfo->active_page);1543 // TRACE("total pages %d removing page %d active page %d\n", 1544 // psInfo->nPages, index, psInfo->active_page); 1545 1545 /* 1546 1546 * Check if we're removing the active page. … … 1563 1563 else 1564 1564 { 1565 TRACE("Removing the only page, close the dialog!\n");1565 // TRACE("Removing the only page, close the dialog!\n"); 1566 1566 1567 1567 if (psInfo->isModeless) -
trunk/src/comctl32/tab.c
r1565 r1615 1 /* $Id: tab.c,v 1.1 6 1999-11-02 21:44:03 achimha Exp $ */1 /* $Id: tab.c,v 1.17 1999-11-05 13:01:33 achimha Exp $ */ 2 2 /* 3 3 * Tab control … … 396 396 pt.y = (INT)HIWORD(lParam); 397 397 398 newItem =TAB_InternalHitTest (hwnd, infoPtr,pt,&dummy);398 newItem = TAB_InternalHitTest (hwnd, infoPtr, pt, (unsigned int*)&dummy); 399 399 400 TRACE("On Tab, item %d\n", newItem);400 // TRACE("On Tab, item %d\n", newItem); 401 401 402 402 if ( (newItem!=-1) && … … 1497 1497 if (len>wineItem->cchTextMax) 1498 1498 wineItem->pszText= COMCTL32_ReAlloc (wineItem->pszText, len+1); 1499 lstrcpyA ( wineItem->pszText, tabItem->pszText);1499 lstrcpyA ((unsigned char*)wineItem->pszText, tabItem->pszText); 1500 1500 } 1501 1501
Note:
See TracChangeset
for help on using the changeset viewer.