Changeset 1739 for trunk/src/user32/user32.cpp
- Timestamp:
- Nov 14, 1999, 5:35:58 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/user32.cpp
r1704 r1739 1 /* $Id: user32.cpp,v 1.5 3 1999-11-11 13:17:30sandervl Exp $ */1 /* $Id: user32.cpp,v 1.54 1999-11-14 16:35:55 sandervl Exp $ */ 2 2 3 3 /* … … 1883 1883 DWORD WIN32API GetTabbedTextExtentA( HDC hDC, LPCSTR lpString, int nCount, int nTabPositions, LPINT lpnTabStopPositions) 1884 1884 { 1885 #ifdef DEBUG 1886 WriteLog("USER32: GetTabbedTextExtentA\n"); 1887 #endif 1885 dprintf2(("USER32: GetTabbedTextExtentA %x %s", hDC, lpString)); 1888 1886 return O32_GetTabbedTextExtent(hDC,lpString,nCount,nTabPositions,lpnTabStopPositions); 1889 1887 } … … 1895 1893 DWORD rc; 1896 1894 1897 #ifdef DEBUG 1898 WriteLog("USER32: GetTabbedTextExtentW\n"); 1899 #endif 1895 dprintf2(("USER32: GetTabbedTextExtentW %x %s", hDC, astring)); 1900 1896 rc = O32_GetTabbedTextExtent(hDC,astring,nCount,nTabPositions,lpnTabStopPositions); 1901 1897 FreeAsciiString(astring); … … 1924 1920 FreeAsciiString(astring); 1925 1921 return rc; 1926 }1927 1928 /* Icon Functions */1929 int WIN32API LookupIconIdFromDirectory(PBYTE presbits, BOOL fIcon)1930 {1931 #ifdef DEBUG1932 WriteLog("USER32: LookupIconIdFromDirectory, not implemented\n");1933 #endif1934 return(0);1935 }1936 //******************************************************************************1937 //******************************************************************************1938 int WIN32API LookupIconIdFromDirectoryEx(PBYTE presbits, BOOL fIcon,1939 int cxDesired, int cyDesired,1940 UINT Flags)1941 {1942 #ifdef DEBUG1943 WriteLog("USER32: LookupIconIdFromDirectoryEx, not implemented\n");1944 #endif1945 return(0);1946 1922 } 1947 1923
Note:
See TracChangeset
for help on using the changeset viewer.