mirror of
https://github.com/reactos/reactos
synced 2025-10-05 16:02:58 +02:00
[NETSH] Add the PreprocessCommand stub
This commit is contained in:
@@ -217,6 +217,23 @@ MatchToken(
|
||||
return (_wcsicmp(pwszUserToken, pwszCmdToken) == 0) ? TRUE : FALSE;
|
||||
}
|
||||
|
||||
DWORD
|
||||
WINAPI
|
||||
PreprocessCommand(
|
||||
_In_ HANDLE hModule,
|
||||
_Inout_ LPWSTR *ppwcArguments,
|
||||
_In_ DWORD dwCurrentIndex,
|
||||
_In_ DWORD dwArgCount,
|
||||
_In_ TAG_TYPE *pttTags,
|
||||
_In_ DWORD dwTagCount,
|
||||
_In_ DWORD dwMinArgs,
|
||||
_In_ DWORD dwMaxArgs,
|
||||
_Out_ DWORD *pdwTagType)
|
||||
{
|
||||
DPRINT1("PreprocessCommand()\n");
|
||||
return 0;
|
||||
}
|
||||
|
||||
DWORD
|
||||
CDECL
|
||||
PrintError(
|
||||
|
@@ -1,5 +1,6 @@
|
||||
@ stdcall MatchEnumTag(ptr wstr long ptr ptr)
|
||||
@ stdcall MatchToken(wstr wstr)
|
||||
@ stdcall PreprocessCommand(ptr ptr long long ptr long long long ptr)
|
||||
@ varargs PrintError(ptr long)
|
||||
@ varargs PrintMessage(wstr)
|
||||
@ varargs PrintMessageFromModule(ptr long)
|
||||
|
Reference in New Issue
Block a user