summaryrefslogtreecommitdiff
path: root/ident.h
blob: 1fa1a14cd291d0abe546d0e924f662603a0835f4 (plain)
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
/************************************************

  ident.h -

  $Author: matz $
  $Revision: 1.2 $
  $Date: 1994/08/12 04:47:29 $
  created at: Mon Jan 31 16:23:19 JST 1994

  Copyright (C) 1995 Yukihiro Matsumoto

************************************************/

#ifndef IDENT_H
#define IDENT_H

#define ID_SCOPE_SHIFT 3
#define ID_SCOPE_MASK 0x07
#define ID_LOCAL    0x00
#define ID_INSTANCE 0x01
#define ID_GLOBAL   0x02
#define ID_ATTRSET  0x03
#define ID_CONST    0x04
#define ID_NTHREF   0x05

#endif