37 lines
576 B
C
37 lines
576 B
C
|
//////////////////////////////////////////////////////////////////////////////
|
||
|
//
|
||
|
// Copyright (c) 1999 Microsoft Corporation
|
||
|
//
|
||
|
// Module Name:
|
||
|
//
|
||
|
// aaaahndl.h
|
||
|
//
|
||
|
// Abstract:
|
||
|
//
|
||
|
//
|
||
|
// Revision History:
|
||
|
//
|
||
|
// Thierry Perraut 04/02/1999
|
||
|
//////////////////////////////////////////////////////////////////////////////
|
||
|
#ifndef _AAAAHNDL_H_
|
||
|
#define _AAAAHNDL_H_
|
||
|
|
||
|
#if _MSC_VER > 1000
|
||
|
#pragma once
|
||
|
#endif
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
// FN_HANDLE_CMD HandleAaaaShowServers;
|
||
|
|
||
|
NS_CONTEXT_DUMP_FN AaaaDump;
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
#endif //_AAAAHNDL_H_
|
||
|
|
||
|
|