mirror of https://github.com/tongzx/nt5src
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.
27 lines
314 B
27 lines
314 B
/*++
|
|
|
|
Copyright (c) 1998 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
rpcss.c
|
|
|
|
Author:
|
|
|
|
Rong Chen [RongC]
|
|
|
|
Revision History:
|
|
|
|
RongC 09-16-98
|
|
|
|
--*/
|
|
#include <dcomss.h>
|
|
|
|
VOID WINAPI ServiceMain(DWORD, PWSTR[]);
|
|
|
|
int __cdecl main(int argc, char *argv[])
|
|
{
|
|
ServiceMain(0, 0);
|
|
return(0);
|
|
}
|
|
|