Source code of Windows XP (NT5)
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

  1. /*++
  2. Copyright (c) 1998 Microsoft Corporation
  3. Module Name:
  4. rpcss.c
  5. Author:
  6. Rong Chen [RongC]
  7. Revision History:
  8. RongC 09-16-98
  9. --*/
  10. #include <dcomss.h>
  11. VOID WINAPI ServiceMain(DWORD, PWSTR[]);
  12. int __cdecl main(int argc, char *argv[])
  13. {
  14. ServiceMain(0, 0);
  15. return(0);
  16. }