-
-
Notifications
You must be signed in to change notification settings - Fork 270
Expand file tree
/
Copy pathalice_proto.h
More file actions
49 lines (39 loc) · 1.5 KB
/
alice_proto.h
File metadata and controls
49 lines (39 loc) · 1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/*
* PROGRAM: Alice (All Else) Utility
* MODULE: alice_proto.h
* DESCRIPTION: Prototype header file for alice.cpp
*
* 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 ALICE_ALICE_PROTO_H
#define ALICE_ALICE_PROTO_H
#include "../common/ThreadData.h"
#include "../common/classes/MsgPrint.h"
#include "../common/UtilSvc.h"
namespace Firebird::Alice
{
int ALICE_main(UtilSvc*);
int alice(UtilSvc*);
class AliceGlobals;
void ALICE_upper_case(const TEXT*, TEXT*, const size_t) noexcept;
void ALICE_print(USHORT, const MsgFormat::SafeArg& arg = MsgFormat::SafeArg());
[[noreturn]] void ALICE_error(USHORT, const MsgFormat::SafeArg& arg = MsgFormat::SafeArg());
void ALICE_print_status(bool error, const ISC_STATUS*);
[[noreturn]] void ALICE_exit(int, AliceGlobals*);
} // namespace Firebird::Alice
#endif // ALICE_ALICE_PROTO_H