Source code of Windows XP (NT5)
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 1998 Adaptec, Inc., All Rights Reserved. ** ** This software contains the valuable trade secrets of Adaptec. The ** software is protected under copyright laws as an unpublished work of ** Adaptec. Notice is for informational purposes only and does not imply ** publication. The user of this software may make copies of the software ** for use with parts manufactured by Adaptec or under license from Adaptec ** and for no other use. ** ******************************************************************************/
/****************************************************************************** ** ** Module Name: ImapiRegisty.h ** ******************************************************************************/
#ifndef _IMAPIREGISTRY_H_ #define _IMAPIREGISTRY_H_
#define IMAPI_PRODUCT_REGPATH "Software\\Microsoft\\IMAPI" #define IMAPI_REGKEY_STASHFILE "\\StashInfo"
#define IMAPI_REGVAL_NEWPATH "StashNewPath" #define IMAPI_REGVAL_PATH "StashPath" #define IMAPI_REGVAL_STASHSIZE "StashSize" #define IMAPI_REGVAL_STASHAUTO "Automatic" #define IMAPI_REGVAL_DELETEONCLOSE "DeleteOnClose"
#endif //_IMAPIREGISTRY_H_
|