Commit 0df9cce2 authored by Vijay Kiran Kamuju's avatar Vijay Kiran Kamuju Committed by Alexandre Julliard

ws2_32: Add stub for WSCSetApplicationCategory.

parent 2538b010
......@@ -9044,6 +9044,17 @@ INT WINAPI WSCWriteProviderOrder( LPDWORD entry, DWORD number )
}
/***********************************************************************
* 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)
*/
INT WINAPI WSANSPIoctl( HANDLE hLookup, DWORD dwControlCode, LPVOID lpvInBuffer,
......
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment