41 lines
1.3 KiB
C
41 lines
1.3 KiB
C
|
|
/***********************************************************************
|
|
*
|
|
* FLATTEMP.H
|
|
*
|
|
* This module contains typedefs and defines required for
|
|
* the FLATTEMP utility.
|
|
*
|
|
* Copyright Citrix Systems Inc. 1996
|
|
* Copyright (c) 1998-1999 Microsoft Corporation
|
|
*
|
|
*
|
|
*************************************************************************/
|
|
|
|
/*
|
|
* 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_HELP_USAGE1 102
|
|
#define IDS_HELP_USAGE2 103
|
|
#define IDS_HELP_USAGE3 104
|
|
#define IDS_HELP_USAGE4 105
|
|
#define IDS_HELP_USAGE5 106
|
|
#define IDS_FLATTEMP_DISABLED 107
|
|
#define IDS_FLATTEMP_ENABLED 108
|
|
#define IDS_ACCESS_DENIED 109
|
|
#define IDS_ACCESS_DENIED_ADMIN 110
|
|
#define IDS_ERROR_NOT_TS 111
|
|
#define IDS_ACCESS_DENIED_DUE_TO_GROUP_POLICY 112
|
|
|