8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-27 20:03:03 +01:00
firebird-mirror/src/yvalve/msg.h
2014-07-28 13:01:10 +00:00

76 lines
2.0 KiB
C

/*
* PROGRAM: JRD Access Method
* MODULE: msg.h
* DESCRIPTION: Message system definitions
*
* 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 JRD_MSG_H
#define JRD_MSG_H
#define MSG_NUMBER(facility, code) ((SLONG) facility * 10000 + code)
const USHORT MSG_BUCKET = 1024;
const UCHAR MSG_MAJOR_VERSION = 1;
// trick to silence the compiler when FB_MSG_MINOR_VERSION is 0
#define FB_MSG_MINOR_VERSION 1
const UCHAR MSG_MINOR_VERSION = FB_MSG_MINOR_VERSION;
// Message file header block
struct isc_msghdr
{
UCHAR msghdr_major_version; // Version number
UCHAR msghdr_minor_version; // Version number
USHORT msghdr_bucket_size; // Bucket size of B-tree
ULONG msghdr_top_tree; // Start address of first index bucket
ULONG msghdr_origin; // Origin for data records, unused.
USHORT msghdr_levels; // Levels in tree
};
// Index node
struct msgnod
{
ULONG msgnod_code; // Message code
ULONG msgnod_seek; // Offset of next bucket or message
};
// Leaf node
struct msgrec
{
ULONG msgrec_code; // Message code
USHORT msgrec_length; // Length of message text
USHORT msgrec_flags; // Misc flags
TEXT msgrec_text[1]; // Text of message
inline msgrec* next() const
{
IPTR next = (IPTR) this;
next += FB_ALIGN(offsetof(msgrec, msgrec_text[0]) + msgrec_length, sizeof (SLONG));
return (msgrec*) next;
}
};
typedef msgrec* MSGREC;
#endif // JRD_MSG_H