index.h
来自「开放源码的编译器open watcom 1.6.0版的源代码」· C头文件 代码 · 共 136 行
H
136 行
/****************************************************************************
*
* Open Watcom Project
*
* Portions Copyright (c) 1983-2002 Sybase, Inc. All Rights Reserved.
*
* ========================================================================
*
* This file contains Original Code and/or Modifications of Original
* Code as defined in and that are subject to the Sybase Open Watcom
* Public License version 1.0 (the 'License'). You may not use this file
* except in compliance with the License. BY USING THIS FILE YOU AGREE TO
* ALL TERMS AND CONDITIONS OF THE LICENSE. A copy of the License is
* provided with the Original Code and Modifications, and is also
* available at www.sybase.com/developer/opensource.
*
* The Original Code and all software distributed under the License are
* distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
* EXPRESS OR IMPLIED, AND SYBASE AND ALL CONTRIBUTORS HEREBY DISCLAIM
* ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR
* NON-INFRINGEMENT. Please see the License for the specific language
* governing rights and limitations under the License.
*
* ========================================================================
*
* Description: WHEN YOU FIGURE OUT WHAT THIS FILE DOES, PLEASE
* DESCRIBE IT HERE!
*
****************************************************************************/
#ifndef __INDEX_H_INCLUDED__
#define __INDEX_H_INCLUDED__
#include "watcom.h"
/* FILE format
*
* HelpHeader
* DefaultStrings
* PageItemNumIndex
* HelpIndexPages
* HelpDataPages
* HelpText
*/
/*
* DefaultStrings
* uint_16 ( str_cnt ) - number of strings
* uint_16 (* str_cnt) - length of each string
* char* (*str_cnt) - default strings
*/
/* PageItemNumIndex
* uint_16 (* datapagecnt) -the index of the first item for the
* corrosponding data page
*/
/* HelpIndexPage
*
* HelpPageHeader
* HelpIndexEntry (* num_entries)
*/
/* HelpDataPage
*
* HelpPageHeader
* PageIndexEntry (* num_entries)
* StringBlock
*/
#define PAGE_SIZE 1024
#define INDEX_ENTRIES_PER_PAGE \
( ( PAGE_SIZE - sizeof( HelpPageHeader ) ) / sizeof( HelpIndexEntry ) )
#define HELP_SIG_1 0x1359ddcc
#define HELP_SIG_2 0x95843561
#define HELP_MAJ_VER 2
#define HELP_MIN_VER 0
#pragma pack(push, 1)
typedef struct {
uint_32 sig[2];
uint_16 ver_maj;
uint_16 ver_min;
uint_16 indexpagecnt;
uint_16 datapagecnt;
uint_32 topiccnt;
uint_16 str_size;
uint_16 unused[6];
} HelpHeader;
typedef struct {
uint_32 sig[2];
uint_16 ver_maj;
uint_16 ver_min;
uint_16 indexpagecnt;
uint_16 datapagecnt;
uint_32 topiccnt;
uint_16 unused[6];
} OldHeader;
enum {
PAGE_DATA,
PAGE_INDEX
};
typedef struct {
uint_16 type;
uint_16 num_entries;
uint_16 page_num;
} HelpPageHeader;
#define INDEX_LEN 20
typedef struct {
uint_16 nextpage;
char start[INDEX_LEN];
} HelpIndexEntry;
typedef struct {
uint_16 name_offset;
uint_32 entry_offset;
} PageIndexEntry;
#pragma pack(pop)
// this is a temporary kludge
#if !defined( bool )
#define bool unsigned char
#endif
unsigned long CalcIndexSize( char **str, bool gen_str );
int WriteIndex( int fout, char *str[2], bool gen_str );
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?