27 lines
939 B
Plaintext
27 lines
939 B
Plaintext
/*
|
|
* winsafer.rh
|
|
*
|
|
* Resource IDs for WinSAFER program authorization policies
|
|
* localized strings within ADVAPI32.DLL
|
|
*
|
|
*/
|
|
|
|
#ifndef __WINSAFER_RH_H__
|
|
#define __WINSAFER_RH_H__
|
|
|
|
#define CODEAUTHZ_RC_BASE 50000
|
|
|
|
#define CODEAUTHZ_RC_LEVELNAME_DISALLOWED (CODEAUTHZ_RC_BASE+1)
|
|
#define CODEAUTHZ_RC_LEVELDESC_DISALLOWED (CODEAUTHZ_RC_BASE+2)
|
|
#define CODEAUTHZ_RC_LEVELNAME_UNTRUSTED (CODEAUTHZ_RC_BASE+3)
|
|
#define CODEAUTHZ_RC_LEVELDESC_UNTRUSTED (CODEAUTHZ_RC_BASE+4)
|
|
#define CODEAUTHZ_RC_LEVELNAME_CONSTRAINED (CODEAUTHZ_RC_BASE+5)
|
|
#define CODEAUTHZ_RC_LEVELDESC_CONSTRAINED (CODEAUTHZ_RC_BASE+6)
|
|
#define CODEAUTHZ_RC_LEVELNAME_NORMALUSER (CODEAUTHZ_RC_BASE+7)
|
|
#define CODEAUTHZ_RC_LEVELDESC_NORMALUSER (CODEAUTHZ_RC_BASE+8)
|
|
#define CODEAUTHZ_RC_LEVELNAME_FULLYTRUSTED (CODEAUTHZ_RC_BASE+9)
|
|
#define CODEAUTHZ_RC_LEVELDESC_FULLYTRUSTED (CODEAUTHZ_RC_BASE+10)
|
|
|
|
#endif
|
|
|