33 lines
1.2 KiB
C
33 lines
1.2 KiB
C
|
/******************************************************************************
|
||
|
**
|
||
|
** 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_
|