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.
|
|
/**********************************************************************/ /** Microsoft Passport **/ /** Copyright(c) Microsoft Corporation, 1999 - 2001 **/ /**********************************************************************/
/*
precomp.h
FILE HISTORY:
*/ #ifndef __PRECOMP_H
#define __PRECOMP_H
#pragma warning ( disable : 4242 )
#ifndef _WIN32_WINNT
#define _WIN32_WINNT 0x0400
#endif
#include <assert.h>
#include <comdef.h>
#include "digest.h"
#include "passporttypes.h"
#include "PassportEvent.hpp"
#include "PassportGuard.hpp"
#include "PpNexusClient.h"
#include "PpNotificationThread.h"
#include "PpShadowDocument.h"
#include "PMAlertsDefs.h"
#include "PassportAlertInterface.h"
#include "pmalerts.h"
extern PassportAlertInterface* g_pAlert;
#endif // __PRECOMP_H
|