Ignore:
Timestamp:
Jul 14, 2003, 3:43:33 PM (22 years ago)
Author:
sandervl
Message:

KOM: Fixed InternalTextOutW() and GetTextExtentPointW() to support unicode correctly. (DBCS)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/heapstring.h

    r9673 r10163  
    1111#include <wine\unicode.h>
    1212//SvL: strcase -> case insensitive!
    13 #define strncasecmp     lstrncmpiA
    14 #define strcasecmp      lstrcmpiA
     13#define strncasecmp lstrncmpiA
     14#define strcasecmp  lstrcmpiA
    1515#define strncmpiW       lstrncmpiW
    16 #define _strlwr(a)      strlwr(a)
     16#define _strlwr(a)  strlwr(a)
    1717
    1818
     
    4141int    WIN32API lstrcmpiA      (LPCSTR arg1, LPCSTR  arg2);
    4242int    WIN32API lstrcmpiW      (LPCWSTR arg1, LPCWSTR arg2);
    43 int    WIN32API lstrcpynAtoW   (LPWSTR unicode, LPCSTR ascii, int asciilen);
    44 int    WIN32API lstrcpynWtoA   (LPSTR ascii, LPCWSTR unicode, int unilen);
     43int    WIN32API lstrcpynAtoW   (LPWSTR unicode, LPCSTR ascii, int unilen);
     44int    WIN32API lstrcpynWtoA   (LPSTR ascii, LPCWSTR unicode, int asciilen);
    4545LPSTR  WIN32API lstrcpyWtoA    (LPSTR ascii, LPCWSTR unicode);
    4646LPWSTR WIN32API lstrcpyAtoW    (LPWSTR unicode, LPCSTR ascii);
     47int    WIN32API lstrlenWtoA    ( LPCWSTR ustring, int ulen );
     48int    WIN32API lstrlenAtoW    ( LPCSTR astring, int alen );
    4749
    4850LPVOID WIN32API HEAP_xalloc    ( HANDLE heap, DWORD flags, DWORD size );
Note: See TracChangeset for help on using the changeset viewer.