Ignore:
Timestamp:
Nov 5, 1999, 2:01:33 PM (26 years ago)
Author:
achimha
Message:

source code cleanup, remove warnings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/comctl32/comctl32undoc.c

    r1565 r1615  
    1 /* $Id: comctl32undoc.c,v 1.13 1999-11-02 21:44:01 achimha Exp $ */
     1/* $Id: comctl32undoc.c,v 1.14 1999-11-05 13:01:32 achimha Exp $ */
    22/*
    33 * Undocumented functions from COMCTL32.DLL
     
    18311831 */
    18321832LPWSTR WINAPI COMCTL32_StrChrW( LPCWSTR lpStart, WORD wMatch) {
     1833  dprintf(("COMCTL32: StrChrW - unimplemented stub\n"));
    18331834//  return CRTDLL_wcschr(lpStart, wMatch);
     1835  return 0;
    18341836}
    18351837
     
    18471849 */
    18481850INT WINAPI COMCTL32_StrCmpNW( LPCWSTR lpStr1, LPCWSTR lpStr2, int nChar) {
     1851  dprintf(("COMCTL32: StrCmpNW - unimplemented stub\n"));
    18491852//  return lstrncmpW(lpStr1, lpStr2, nChar);
     1853  return 0;
    18501854}
    18511855
     
    18561860INT WINAPI COMCTL32_StrCmpNIW( LPCWSTR lpStr1, LPCWSTR lpStr2, int nChar) {
    18571861//  FIXME("(%s, %s, %i): stub\n", debugstr_w(lpStr1), debugstr_w(lpStr2), nChar);
     1862  dprintf(("COMCTL32: StrCmpNIW - unimplemented stub\n"));
    18581863  return 0;
    18591864}
     
    18641869 */
    18651870LPSTR WINAPI COMCTL32_StrRChrA( LPCSTR lpStart, LPCSTR lpEnd, WORD wMatch) {
     1871  dprintf(("COMCTL32: lstrrchr - unimplemented stub\n"));
    18661872//  return lstrrchr(lpStart, lpEnd, wMatch);
     1873  return 0;
    18671874}
    18681875
     
    18721879 */
    18731880LPWSTR WINAPI COMCTL32_StrRChrW( LPCWSTR lpStart, LPCWSTR lpEnd, WORD wMatch) {
     1881  dprintf(("COMCTL32: StrRChrW - unimplemented stub\n"));
    18741882//  return lstrrchrw(lpStart, lpEnd, wMatch);
     1883  return 0;
    18751884}
    18761885
     
    18881897 */
    18891898LPWSTR WINAPI COMCTL32_StrStrW( LPCWSTR lpFirst, LPCWSTR lpSrch) {
     1899  dprintf(("COMCTL32: StrStrW - unimplemented stub\n"));
    18901900//  return strstrw(lpFirst, lpSrch);
     1901  return 0;
    18911902}
    18921903
     
    18971908INT WINAPI COMCTL32_StrSpnW( LPWSTR lpStr, LPWSTR lpSet) {
    18981909  LPWSTR lpLoop = lpStr;
     1910
     1911  dprintf(("COMCTL32: StrSpnW - unimplemented stub\n"));
     1912  return 0;
    18991913
    19001914  /* validate ptr */
     
    19191933BOOL WINAPI comctl32_410( HWND hw, DWORD b, DWORD c, DWORD d) {
    19201934
     1935  dprintf(("COMCTL32: comctl32_410 - unimplemented stub\n"));
    19211936   //FIXME_(commctrl)("(%x, %lx, %lx, %lx): stub!\n", hw, b, c, d);
    19221937
     
    19341949
    19351950   //FIXME_(commctrl)("(%lx): stub!\n", a);
     1951  dprintf(("COMCTL32: InitMUILanguage - unimplemented stub\n"));
    19361952
    19371953   return TRUE;
Note: See TracChangeset for help on using the changeset viewer.