wf77defs.h

来自「开放源码的编译器open watcom 1.6.0版的源代码」· C头文件 代码 · 共 71 行

H
71
字号
/****************************************************************************
*
*                            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!
*
****************************************************************************/


#include "cgdefs.h"

// this will not be necessary when long doubles are implemented // UNCOMMENT_TOKEN
#define T_LONGDOUBLE    T_DOUBLE
#define T_DBG_XCOMPLEX  T_DBG_DCOMPLEX

enum {
    T_COMPLEX   = T_FIRST_FREE, // FORTRAN 77 COMPLEX*8
    T_DCOMPLEX,                 // FORTRAN 77 COMPLEX*16
    T_XCOMPLEX,                 // FORTRAN 77 COMPLEX*20
    T_CHAR,                     // FORTRAN 77 CHARACTER*n
    T_ADV_ENTRY,                // dimension entry in ADV
    T_ADV_ENTRY_1,              // for 1-D arrays
    T_ADV_ENTRY_2,              // for 2-D arrays
    T_ADV_ENTRY_3,              // for 3-D arrays
    T_ADV_ENTRY_4,              // for 4-D arrays
    T_ADV_ENTRY_5,              // for 5-D arrays
    T_ADV_ENTRY_6,              // for 6-D arrays
    T_ADV_ENTRY_7,              // for 7-D arrays
    T_ADV_LO,                   // "lo" field in dimension entry
    T_ADV_HI,                   // "hi" field in dimension entry
    T_LOCAL_POINTER,            // pointer to data in local data area
    T_GLOBAL_POINTER,           // pointer to global data (single segment)
    T_CHAR16,                   // SCB for "far16" support
    T_CHAR_ALLOCATABLE,         // SCB for allocatable CHARACTER data
    T_ARR_ALLOCATABLE,          // Allocatable array structure
    T_ARR_ALLOCATABLE_EXTENDED, // Allocatable extended array structure
    T_ADV_HI_CV,                // "hi" field in dimension entry for Codeview
    T_ADV_ENTRY_CV,             // dimension entry in ADV for Codeview
    T_USER_DEFINED              // first user defined type
};

typedef enum {
    FCMSG_EQUIV_TOO_LARGE,
    FCMSG_RET_VAL_TOO_LARGE,
    FCMSG_VARIABLE_TOO_LARGE,
    FCMSG_LAST_MSG
} fc_msg_class;

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?