windows-nt/Source/XPSP1/NT/base/screg/sc/server/services.cxx

60 lines
650 B
C++
Raw Normal View History

2020-09-26 03:20:57 -05:00
/*++
Copyright (c) 1992 Microsoft Corporation
Module Name:
SERVICES.CXX
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 "precomp.hxx"
#include <ntrpcp.h>
extern "C"
int __cdecl
main (
int argc,
PCHAR argv[]
)
/*++
Routine Description:
Arguments:
Return Value:
--*/
{
//
// Initialize the RPC server
//
RpcpInitRpcServer();
SvcctrlMain(argc, argv);
//
// We should never get here!
//
ASSERT( FALSE );
return 0;
}