mirror of https://github.com/tongzx/nt5src
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.
34 lines
818 B
34 lines
818 B
//Copyright (c) 1998 - 1999 Microsoft Corporation
|
|
/******************************************************************************
|
|
*
|
|
* QUERY.H
|
|
*
|
|
* This module contains typedefs and defines required for the QUERY utility
|
|
* menu.
|
|
*
|
|
*
|
|
******************************************************************************/
|
|
|
|
/*
|
|
* Usage string definitions.
|
|
*/
|
|
#define UTILITY_NAME L"QUERY"
|
|
|
|
|
|
/*
|
|
* General application definitions.
|
|
*/
|
|
#define SUCCESS 0
|
|
#define FAILURE 1
|
|
|
|
#define MAX_IDS_LEN 256 // maximum length that the input parm can be
|
|
|
|
|
|
/*
|
|
* Resource string IDs
|
|
*/
|
|
#define IDS_ERROR_MALLOC 100
|
|
#define IDS_ERROR_INVALID_PARAMETERS 101
|
|
#define IDS_ERROR_REGISTRY_FAILURE 102
|
|
#define IDS_ERROR_NOT_TS 103
|
|
|