Changeset 1615 for trunk/src/comctl32/comctl32undoc.c
- Timestamp:
- Nov 5, 1999, 2:01:33 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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;
Note:
See TracChangeset
for help on using the changeset viewer.