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.
|
|
// Copyright (c) 1998-1999 Microsoft Corporation
/***********************************************************************
* * ACINIUPD.H * This module contains typedefs and defines required for * the ACINIUPD utility. * * *************************************************************************/
/*
* 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_GET_VALUE 102
#define IDS_ERROR_UPDATE_VALUE 103
#define IDS_ERROR_DEL_KEY 104
#define IDS_ERROR_UPDATE_KEY 105
#define IDS_ERROR_CHANGE_MODE 106
#define IDS_HELP_USAGE1 110
#define IDS_HELP_USAGE2 111
#define IDS_HELP_USAGE3 112
#define IDS_HELP_USAGE4 113
#define IDS_HELP_USAGE5 114
#define IDS_HELP_USAGE6 115
|