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.
39 lines
513 B
39 lines
513 B
/*++
|
|
|
|
Copyright (c) 2000-2001 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
assign.cpp
|
|
|
|
Abstract:
|
|
|
|
WinDbg Extension Api
|
|
|
|
Environment:
|
|
|
|
User Mode.
|
|
|
|
Revision History:
|
|
|
|
Andre Vachon (andreva)
|
|
|
|
bugcheck analyzer.
|
|
|
|
--*/
|
|
|
|
|
|
#include <tchar.h>
|
|
#include <malloc.h>
|
|
#include <mapi.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
BOOL SendOffFailure(TCHAR *pszToList, TCHAR *pszTitle, TCHAR *pszMessage);
|
|
DWORD CountRecips(PTCHAR pszToList);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|