patches and more

Robert Shearman rob at codeweavers.com
Sat Feb 17 14:23:50 CST 2007


David Saez Padros wrote:
> This line should be added to commctrl.h:
>
> #define ListView_GetOrigin(hwndLV, ppt) \
>     (BOOL)SNDMSG((hwndLV), LVM_GETORIGIN, (WPARAM)0, (LPARAM)ppt)

I've submitted a patch for this.

> this one should be added to windows.h (maybe it's not the best
> place for it, but it works):
>
> #define stricmp strcasecmp

This define is not present in the Platform SDK. It is a by-product of 
using glibc instead of msvcrt as your C library. If you used the headers 
in include/msvcrt and added -lmsvcrt to the linker command line then it 
should have worked out of the box. If you want to link against glibc, 
then think of changing stricmp to strcasecmp as part of porting the program.

-- 
Rob Shearman




More information about the wine-devel mailing list