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.

32 lines
802 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 BOOL CreateHelperProcess( LPDWORD ppid );
  22. extern BOOL WaitForHelperStartup( void );
  23. extern HRESULT HelperAddDPlayServer(USHORT port);
  24. extern BOOL HelperDeleteDPlayServer(USHORT port);
  25. #ifdef __cplusplus
  26. };
  27. #endif
  28. #endif