ws2_32: Add stub for WSCSetApplicationCategory.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=48392 Signed-off-by: Vijay Kiran Kamuju <infyquest@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
2538b0100f
commit
0df9cce29d
|
@ -9043,6 +9043,17 @@ INT WINAPI WSCWriteProviderOrder( LPDWORD entry, DWORD number )
|
|||
return 0;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* WSCSetApplicationCategory (WS2_32.@)
|
||||
*/
|
||||
INT WINAPI WSCSetApplicationCategory( LPCWSTR path, DWORD len, LPCWSTR extra, DWORD extralen,
|
||||
DWORD lspcat, DWORD *prev_lspcat, LPINT err )
|
||||
{
|
||||
FIXME("(%s %d %s %d %d %p) Stub!\n", debugstr_w(path), len, debugstr_w(extra),
|
||||
extralen, lspcat, prev_lspcat);
|
||||
return 0;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* WSANSPIoctl (WS2_32.91)
|
||||
*/
|
||||
|
|
|
@ -120,6 +120,7 @@
|
|||
@ stdcall WSCGetProviderPath(ptr ptr ptr ptr)
|
||||
@ stdcall WSCInstallNameSpace(wstr wstr long long ptr)
|
||||
@ stdcall WSCInstallProvider(ptr wstr ptr long ptr)
|
||||
@ stdcall WSCSetApplicationCategory(wstr long wstr long long ptr ptr)
|
||||
@ stdcall WSCUnInstallNameSpace(ptr)
|
||||
@ stub WSCUpdateProvider
|
||||
@ stub WSCWriteNameSpaceOrder
|
||||
|
|
|
@ -41,6 +41,7 @@ INT WINAPI WSCEnableNSProvider(LPGUID,BOOL);
|
|||
INT WINAPI WSCEnumProtocols(LPINT,LPWSAPROTOCOL_INFOW,LPDWORD,LPINT);
|
||||
INT WINAPI WSCGetProviderPath(LPGUID,LPWSTR,LPINT,LPINT);
|
||||
INT WINAPI WSCInstallNameSpace(LPWSTR,LPWSTR,DWORD,DWORD,LPGUID);
|
||||
INT WINAPI WSCSetApplicationCategory(LPCWSTR,DWORD,LPCWSTR,DWORD,DWORD,DWORD*,LPINT);
|
||||
INT WINAPI WSCUnInstallNameSpace(LPGUID);
|
||||
INT WINAPI WSCUpdateProvider(LPGUID, const WCHAR *, const LPWSAPROTOCOL_INFOW, DWORD, LPINT);
|
||||
INT WINAPI WSCWriteProviderOrder(LPDWORD,DWORD);
|
||||
|
|
Loading…
Reference in New Issue