39 lines
521 B
C
39 lines
521 B
C
|
/*++
|
||
|
|
||
|
Copyright (c) 1997-2000 Microsoft Corporation
|
||
|
|
||
|
Module Name:
|
||
|
|
||
|
dnsmsg.h
|
||
|
|
||
|
Abstract:
|
||
|
|
||
|
DNS Resolver Service
|
||
|
|
||
|
Message box string identifier definitions.
|
||
|
|
||
|
Author:
|
||
|
|
||
|
Glenn Curtis (glennc) April 1997
|
||
|
|
||
|
Revision History:
|
||
|
|
||
|
--*/
|
||
|
|
||
|
|
||
|
#ifndef _DNSMSG_INCLUDED_
|
||
|
#define _DNSMSG_INCLUDED_
|
||
|
|
||
|
//
|
||
|
// Message box string identifiers
|
||
|
//
|
||
|
|
||
|
#define DNS_CACHE_MSG_SERVICE 0x00001001
|
||
|
#define DNS_CACHE_MSG_NETSLOW 0x00001002
|
||
|
#define DNS_CACHE_MSG_DESCRIPTION 0x00001003
|
||
|
|
||
|
|
||
|
#endif // _DNSMSG_INCLUDED_
|
||
|
|
||
|
|