37 lines
670 B
C
37 lines
670 B
C
|
//////////////////////////////////////////////////////////////////////////////
|
||
|
//
|
||
|
// Copyright (c) 1998-1999 Microsoft Corporation
|
||
|
//
|
||
|
// Module Name:
|
||
|
//
|
||
|
// aaaamon.h
|
||
|
//
|
||
|
// Abstract:
|
||
|
//
|
||
|
// Prototype for fns called in aaaamon.c
|
||
|
//
|
||
|
// Revision History:
|
||
|
//
|
||
|
// Anand Mahalingam 7/10/98 (ipmon.h)
|
||
|
// Thierry Perraut 04/02/1999 (aaaamon.h)
|
||
|
//
|
||
|
//////////////////////////////////////////////////////////////////////////////
|
||
|
#ifndef _AAAAMON_H_
|
||
|
#define _AAAAMON_H_
|
||
|
|
||
|
#if _MSC_VER > 1000
|
||
|
#pragma once
|
||
|
#endif
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
extern HANDLE g_hModule;
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif // _AAAAMON_H_
|