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.
|
|
/*++
Copyright (c) 1999-2000 Microsoft Corporation
File Name:
ssdpfuncc.h
Abstract:
This file contains cross files function prototypes.
Author: Ting Cai
Created: 09/5/1999
--*/ #ifndef _SSDPFUNCC_
#define _SSDPFUNCC_
#include "ssdptypesc.h"
#include "ssdpnetwork.h"
BOOL InitializeListNotify(); void CleanupListNotify(); BOOL IsInListNotify(char *szType); void PrintSsdpMessageList(MessageList *list); BOOL InitializeSsdpMessageFromRequest(PSSDP_MESSAGE pSsdpMessage, const PSSDP_REQUEST pSsdpRequest); BOOL CopySsdpMessage(PSSDP_MESSAGE pDestination, const PSSDP_MESSAGE pSource); BOOL InitializeListSearch(); void CleanupListSearch();
void FreeMessageList(MessageList *list); VOID CleanupNotificationThread(VOID);
#endif // _SSDPFUNCC_
|