Leaked source code of windows server 2003
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.

34 lines
870 B

  1. /*==========================================================================
  2. *
  3. * Copyright (C) 1995-1997 Microsoft Corporation. All Rights Reserved.
  4. *
  5. * File: helpcli.h
  6. * Content: header file for dplay helper interface
  7. * History:
  8. * Date By Reason
  9. * ==== == ======
  10. * 2/15/97 andyco created from w95help.h
  11. *
  12. ***************************************************************************/
  13. #ifndef __HELPCLI_INCLUDED__
  14. #define __HELPCLI_INCLUDED__
  15. #include "windows.h"
  16. #include "dplaysvr.h"
  17. #include "dpf.h"
  18. #ifdef __cplusplus
  19. extern "C" {
  20. #endif
  21. extern void HelpcliFini( void );
  22. extern BOOL CreateHelperProcess( LPDWORD ppid );
  23. extern BOOL WaitForHelperStartup( void );
  24. extern HRESULT HelperAddDPlayServer(USHORT port);
  25. extern BOOL HelperDeleteDPlayServer(USHORT port);
  26. #ifdef __cplusplus
  27. };
  28. #endif
  29. #endif