Hi,
Is there any reason why the MPR patches are left abandoned? There are others awaiting in my queue...
Cheers,
On Wednesday, 27 July 2016 6:40 AM, Pierre Schweitzer wrote:
Is there any reason why the MPR patches are left abandoned? There are others awaiting in my queue...
- PWSTR name = strdupAtoW(lpName);
- if (!name)
return ERROR_NOT_CONNECTED;
1. New code should use the WCHAR * style.
2. All three functions call WNetCancelConnection2W, but that function is a stub:
DWORD WINAPI WNetCancelConnection2W( LPCWSTR lpName, DWORD dwFlags, BOOL fForce ) { FIXME( "(%s, %08X, %d), stub\n", debugstr_w(lpName), dwFlags, fForce );
return WN_SUCCESS; }
3. Your mail has a StartCom Secure Digital Certificate attached. This has been mangled, as can be seen at the bottom of your patch: http://source.winehq.org/patches/data/124723
Hugh
Hi,
Thanks for your feedback.
Regarding 1. & 3. should I perform a resend with that changed, or should I change it in the next patch I submit?
For 2., this is done on purpose. Real implementation will come in a later patch (already ready and tested here :-)).
Le 27/07/2016 à 13:40, Hugh McMaster a écrit :
On Wednesday, 27 July 2016 6:40 AM, Pierre Schweitzer wrote:
Is there any reason why the MPR patches are left abandoned? There are others awaiting in my queue...
- PWSTR name = strdupAtoW(lpName);
- if (!name)
return ERROR_NOT_CONNECTED;
New code should use the WCHAR * style.
All three functions call WNetCancelConnection2W, but that function is a stub:
DWORD WINAPI WNetCancelConnection2W( LPCWSTR lpName, DWORD dwFlags, BOOL fForce ) { FIXME( "(%s, %08X, %d), stub\n", debugstr_w(lpName), dwFlags, fForce );
return WN_SUCCESS;
}
- Your mail has a StartCom Secure Digital Certificate attached. This has been mangled, as can be seen at the bottom of your patch: http://source.winehq.org/patches/data/124723
Hugh