📄 dtags.h
字号:
/***** uno: dtags.c *****//* Copyright (c) 2000-2003 by Lucent Technologies - Bell Laboratories *//* All Rights Reserved. This software is for educational purposes only. *//* Permission is given to distribute this code provided that this intro- *//* ductory message is not removed and no monies are exchanged. *//* No guarantee is expressed or implied by the distribution of this code. *//* Software written by Gerard J. Holzmann based on the public domain *//* ANSI-C parser Ctree Version 0.14 from Shaun Flisakowski *//* dataflow tags used in dflow.c and in uno_global.c: */#define DEF 1#define FCALL (1<<1) /* 2 */#define USE (1<<2) /* 4 */#define REF0 (1<<3) /* 8 */#define REF1 (1<<4) /* 16 */#define REF2 (1<<5) /* 32 */#define DEREF (1<<6) /* 64 */#define ALIAS (1<<7) /* 128 */#define ARRAY_DECL (1<<8) /* 256 */#define HIDE (1<<9) /* 512 */#define DECL (1<<10) /* 1024 */#define USEafterdef (1<<11) /* 2048 */#define USEbeforedef (1<<12) /* 4096 */#define UNO_CONST (1<<13) /* 8192 */#define PARAM (1<<14) /* 16384 */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -