- Forgot to commit these for MSVC build...
[reactos.git] / reactos / drivers / net / tcpip / tests / tests / tigetprotocolnumber.c
1 #include <roscfg.h>
2 #include "../../include/precomp.h"
3 #include "regtests.h"
4
5 static void RunTest() {
6 UNICODE_STRING Str;
7 int Proto;
8 RtlInitUnicodeString( &Str, L"1" );
9 TiGetProtocolNumber( &Str, (PULONG)&Proto );
10 _AssertEqualValue(1, Proto);
11 }
12
13 _Dispatcher(TigetprotocolnumberTest, "TiGetProtocolNumber");