8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 04:03:04 +01:00

Oops, I forgot to add this file during the FB1->FB2 porting. Sorry.

This commit is contained in:
dimitr 2002-07-12 13:32:50 +00:00
parent a27d963ada
commit 5351ca12c8

39
src/utilities/registry.h Normal file
View File

@ -0,0 +1,39 @@
/*
* PROGRAM: Windows NT installation utilities
* MODULE: registry.h
* DESCRIPTION: Defines for the registry
*
* The contents of this file are subject to the Independant Developers
* Public License Version 1.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy
* of the License at http://www.ibphoenix.com/IDPL.html
*
* Software distributed under the License is distributed on an
* "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express
* or implied. See the License for the specific language governing
* rights and limitations under the License.
*
* The Original Code was created by Inprise Corporation
* and its predecessors. Portions created by Inprise Corporation are
* Copyright (C) Inprise Corporation.
*
* All Rights Reserved.
* Contributor(s): Paul Reeves__________________________________.
*/
#ifndef _REGISTRY_DEFINES_
#define _REGISTRY_DEFINES_
#define REG_KEY_BOR_ROOT "SOFTWARE\\Borland\\InterBase"
#define REG_KEY_BOR_ROOT_CUR_VER "SOFTWARE\\Borland\\InterBase\\CurrentVersion"
#define REG_KEY_FIR_ROOT "SOFTWARE\\FirebirdSQL\\Firebird"
#define REG_KEY_FIR_ROOT_CUR_VER "SOFTWARE\\FirebirdSQL\\Firebird\\CurrentVersion"
#define REG_KEY_ROOT REG_KEY_BOR_ROOT
#define REG_KEY_ROOT_CUR_VER REG_KEY_BOR_ROOT_CUR_VER
#endif /* _REGISTRY_DEFINES_ */