Windows NT 4.0 source code leak
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

56 lines
622 B

/*++
Copyright (c) 1992 Microsoft Corporation
Module Name:
SERVICES.C
Abstract:
This is the main routine for the Win32 Service Controller and
Registry (Screg) RPC server process.
Author:
Dan Lafferty (danl) 25-Oct-1993
Modification History:
--*/
#include <ntrpcp.h>
#include <svcctrl.h>
VOID _CRTAPI1
main (
int argc,
PUCHAR argv[]
)
/*++
Routine Description:
Arguments:
Return Value:
--*/
{
//
// Initialize the RPC server
//
RpcpInitRpcServer();
SvcctrlMain(argc, argv);
//
// We should never get here!
//
ASSERT( FALSE );
}