Ignore:
Timestamp:
Nov 14, 1999, 5:35:58 PM (26 years ago)
Author:
sandervl
Message:

createControls & OSLibEnableWindow bugfixes + LookupIconIdFromDirectory(Ex) port)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/user32/user32.cpp

    r1704 r1739  
    1 /* $Id: user32.cpp,v 1.53 1999-11-11 13:17:30 sandervl Exp $ */
     1/* $Id: user32.cpp,v 1.54 1999-11-14 16:35:55 sandervl Exp $ */
    22
    33/*
     
    18831883DWORD WIN32API GetTabbedTextExtentA( HDC hDC, LPCSTR lpString, int nCount, int nTabPositions, LPINT lpnTabStopPositions)
    18841884{
    1885 #ifdef DEBUG
    1886     WriteLog("USER32:  GetTabbedTextExtentA\n");
    1887 #endif
     1885    dprintf2(("USER32: GetTabbedTextExtentA %x %s", hDC, lpString));
    18881886    return O32_GetTabbedTextExtent(hDC,lpString,nCount,nTabPositions,lpnTabStopPositions);
    18891887}
     
    18951893 DWORD rc;
    18961894
    1897 #ifdef DEBUG
    1898     WriteLog("USER32:  GetTabbedTextExtentW\n");
    1899 #endif
     1895    dprintf2(("USER32: GetTabbedTextExtentW %x %s", hDC, astring));
    19001896    rc = O32_GetTabbedTextExtent(hDC,astring,nCount,nTabPositions,lpnTabStopPositions);
    19011897    FreeAsciiString(astring);
     
    19241920    FreeAsciiString(astring);
    19251921    return rc;
    1926 }
    1927 
    1928 /* Icon Functions */
    1929 int WIN32API LookupIconIdFromDirectory(PBYTE presbits, BOOL fIcon)
    1930 {
    1931 #ifdef DEBUG
    1932   WriteLog("USER32:  LookupIconIdFromDirectory, not implemented\n");
    1933 #endif
    1934   return(0);
    1935 }
    1936 //******************************************************************************
    1937 //******************************************************************************
    1938 int WIN32API LookupIconIdFromDirectoryEx(PBYTE presbits, BOOL  fIcon,
    1939                         int cxDesired, int cyDesired,
    1940                         UINT Flags)
    1941 {
    1942 #ifdef DEBUG
    1943   WriteLog("USER32:  LookupIconIdFromDirectoryEx, not implemented\n");
    1944 #endif
    1945   return(0);
    19461922}
    19471923
Note: See TracChangeset for help on using the changeset viewer.