windows-nt/Source/XPSP1/NT/net/dhcp/server/binl/binltest.c

57 lines
653 B
C
Raw Normal View History

2020-09-26 03:20:57 -05:00
/*++
Copyright (c) 1994 Microsoft Corporation
Module Name:
binltest.c
Abstract:
Test program to run binl service as a process.
Author:
Colin Watson (colinw) 17-Apr-1997
Environment:
User Mode - Win32
Revision History:
--*/
#include <binl.h>
#pragma hdrstop
VOID
DisplayUsage(
VOID
)
{
printf( "Usage: binltest\n");
return;
}
VOID __cdecl
main(
int argc,
char *argv[]
)
{
DWORD Error;
if( argc != 1 ) {
DisplayUsage();
return;
}
ServiceEntry(2,NULL, NULL); // Impossible parameters signal running in binltest
printf( "Binl returned\n");
return;
}