home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 40 / IOPROG_40.ISO / SOFT / NETFrameworkSDK.exe / comsdk.cab / samples1.exe / smc / opcodes.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-06-23  |  651 b   |  20 lines

  1. /*****************************************************************************/
  2. #ifndef _OPCODES_H_
  3. #define _OPCODES_H_
  4. /*****************************************************************************/
  5.  
  6. enum    ILopcodes
  7. {
  8.     #define OPDEF(name, str, decs, incs, args, optp, stdlen, stdop1, stdop2, flow) name,
  9.     #include "opcode.def"
  10.     #undef  OPDEF
  11.  
  12.     CEE_count,
  13.  
  14.     CEE_UNREACHED,                  // fake value: end of block is unreached
  15. };
  16.  
  17. /*****************************************************************************/
  18. #endif//_OPCODES_H_
  19. /*****************************************************************************/
  20.