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.

35 lines
758 B

  1. /*++
  2. Copyright (c) 1999-2000 Microsoft Corporation
  3. File Name:
  4. ssdpfuncc.h
  5. Abstract:
  6. This file contains cross files function prototypes.
  7. Author: Ting Cai
  8. Created: 09/5/1999
  9. --*/
  10. #ifndef _SSDPFUNCC_
  11. #define _SSDPFUNCC_
  12. #include "ssdptypesc.h"
  13. #include "ssdpnetwork.h"
  14. BOOL InitializeListNotify();
  15. void CleanupListNotify();
  16. BOOL IsInListNotify(char *szType);
  17. void PrintSsdpMessageList(MessageList *list);
  18. BOOL InitializeSsdpMessageFromRequest(PSSDP_MESSAGE pSsdpMessage, const PSSDP_REQUEST pSsdpRequest);
  19. BOOL CopySsdpMessage(PSSDP_MESSAGE pDestination, const PSSDP_MESSAGE pSource);
  20. BOOL InitializeListSearch();
  21. void CleanupListSearch();
  22. void FreeMessageList(MessageList *list);
  23. VOID CleanupNotificationThread(VOID);
  24. #endif // _SSDPFUNCC_