Fixed rotation of angles < 90deg in bus_sdl.
Align logical max of angles to physical max defined in dinput (35900). Before, a polar angle of eg 90deg would end up in bus_sdl/bus_udev as 90.25deg.
--
v4: winebus.sys: Align logical max of angles to physical max defined in dinput
winebus.sys: Fix rotation for angles < 90deg
https://gitlab.winehq.org/wine/wine/-/merge_requests/6043
The function SQLBindParam was missed when binding all the available functions. Will implement the SQLBindParam in a future patchset.
The other is just a fix for when parameters are NULL when passed in (Same the the W version).
--
v2:
https://gitlab.winehq.org/wine/wine/-/merge_requests/6063
The function SQLBindParam was missed when binding all the available functions. Will implement the SQLBindParam in a future patchset.
The other is just a fix for when parameters are NULL when passed in (Same the the W version).
--
https://gitlab.winehq.org/wine/wine/-/merge_requests/6063
--
v2: odbc32: Use SQLSetConnectAttrW() instead of SQLSetConnectAttr() if possible.
odbc32: Use SQLFreeHandle() instead of SQLFreeEnv/Connect().
odbc32: Set parent functions before creating the environment handle.
odbc32: Accept SQL_FETCH_NEXT in SQLDataSources/Drivers() if the key has not been opened.
odbc32: Factor out helpers to create driver environment and connection handles.
odbc32: Implement SQLGetInfo(SQL_ODBC_VER).
odbc32: Default to ODBC version 2.
odbc32: Handle options in SQLFreeStmt().
odbc32: Stub SQLGetEnvAttr(SQL_ATTR_CONNECTION_POOLING).
odbc32: Implement SQLGet/SetConnectAttr(SQL_ATTR_CONNECTION_TIMEOUT).
odbc32: Implement SQLGet/SetConnectAttr(SQL_ATTR_LOGIN_TIMEOUT).
https://gitlab.winehq.org/wine/wine/-/merge_requests/6050