2001-05-23 15:26:42 +02:00
|
|
|
/*
|
|
|
|
* PROGRAM: Windows NT installation utilities
|
|
|
|
* MODULE: install.h
|
|
|
|
* DESCRIPTION: Defines for Windows NT installation utilities
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Interbase 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.Inprise.com/IPL.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): ______________________________________.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _UTILITIES_INSTALL_NT_H_
|
|
|
|
#define _UTILITIES_INSTALL_NT_H_
|
|
|
|
|
2003-08-29 19:25:36 +02:00
|
|
|
#define REMOTE_SERVICE "FirebirdServer"
|
|
|
|
#define REMOTE_DISPLAY_NAME "Firebird Server"
|
2003-01-28 17:03:32 +01:00
|
|
|
#define REMOTE_SS_EXECUTABLE "bin\\fbserver"
|
|
|
|
#define REMOTE_CS_EXECUTABLE "bin\\fb_inet_server"
|
2003-08-29 19:25:36 +02:00
|
|
|
#define ISCGUARD_SERVICE "FirebirdGuardian"
|
|
|
|
#define ISCGUARD_DISPLAY_NAME "Firebird Guardian"
|
|
|
|
#define ISCGUARD_EXECUTABLE "bin\\fbguard"
|
|
|
|
#define GUARDIAN_MUTEX "FirebirdGuardianMutex"
|
2001-05-23 15:26:42 +02:00
|
|
|
/* Starting with 128 the service prams are user defined */
|
|
|
|
#define SERVICE_CREATE_GUARDIAN_MUTEX 128
|
2003-08-29 19:25:36 +02:00
|
|
|
#define REMOTE_DEPENDENCIES "Tcpip\0\0"
|
2001-05-23 15:26:42 +02:00
|
|
|
|
|
|
|
#define COMMAND_NONE 0
|
|
|
|
#define COMMAND_INSTALL 1
|
|
|
|
#define COMMAND_REMOVE 2
|
|
|
|
#define COMMAND_START 3
|
|
|
|
#define COMMAND_STOP 4
|
|
|
|
#define COMMAND_CONFIG 5
|
2003-08-29 19:25:36 +02:00
|
|
|
#define COMMAND_QUERY 6
|
2001-05-23 15:26:42 +02:00
|
|
|
|
|
|
|
#define STARTUP_DEMAND 0
|
|
|
|
#define STARTUP_AUTO 1
|
|
|
|
|
2002-06-29 10:49:39 +02:00
|
|
|
#define NO_GUARDIAN 0
|
|
|
|
#define USE_GUARDIAN 1
|
|
|
|
|
2003-08-29 19:25:36 +02:00
|
|
|
#define DEFAULT_PRIORITY 0
|
2001-05-23 15:26:42 +02:00
|
|
|
#define NORMAL_PRIORITY 1
|
|
|
|
#define HIGH_PRIORITY 2
|
|
|
|
|
2003-01-28 17:03:32 +01:00
|
|
|
#define ARCH_SS 0
|
|
|
|
#define ARCH_CS 1
|
|
|
|
|
2001-05-23 15:26:42 +02:00
|
|
|
#define IB_SERVICE_ALREADY_DEFINED 100
|
2003-08-29 19:25:36 +02:00
|
|
|
#define IB_SERVICE_RUNNING 101
|
2001-05-23 15:26:42 +02:00
|
|
|
|
2003-08-29 19:25:36 +02:00
|
|
|
#define IB_GUARDIAN_ALREADY_DEFINED 102
|
|
|
|
#define IB_GUARDIAN_RUNNING 103
|
2001-05-23 15:26:42 +02:00
|
|
|
|
2003-08-30 15:54:56 +02:00
|
|
|
#define FB_LOGON_SRVC_RIGHT_ALREADY_DEFINED 104
|
|
|
|
|
2001-05-23 15:26:42 +02:00
|
|
|
#endif /* _UTILITIES_INSTALL_NT_H_ */
|