[Bug 2679] Backspace and cursors do not work

Wine Bugs wine-bugs at winehq.org
Thu Jan 27 19:52:42 CST 2005


http://bugs.winehq.org/show_bug.cgi?id=2679


tony_lambregts at telusplanet.net changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|                            |INVALID




------- Additional Comments From tony_lambregts at telusplanet.net  2005-27-01 19:52 -------
Marking invalid since this is fixed in Wine. (Wine is not Cedega)

/***********************************************************************
 *           CharPrevA   (USER32.@)
 */
LPSTR WINAPI CharPrevA( LPCSTR start, LPCSTR ptr )
{
    while (*start && (start < ptr))
    {
        LPCSTR next = CharNextA( start );
        if (next >= ptr) break;
        start = next;
    }
    return (LPSTR)start;
}


-- 
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.



More information about the wine-bugs mailing list