代码搜索:enum

找到约 10,000 项符合「enum」的源代码

代码结果 10,000
www.eeworm.com/read/439490/7707874

c gband.c

/*BAND*/ #include #include enum BOOLEAN { false = 0 , true }; void main() { int i , j , k , n , r , m ; float c ; enum BOOLEAN t ; char sua ; float b[50] ; flo
www.eeworm.com/read/439490/7707900

c frankel.c

/*LAP FRANKEL*/ #include #include #include enum BOOLEAN { false = 0 , true }; void main() { int i , j , k , n , max ; float c , s , epslon , beta; enum BO
www.eeworm.com/read/297500/8013283

h airport.h

enum Error_code{success,fail,overflow,underflow}; const int maxqueue=40; //Plane 的定义 enum Plane_status{null,arriving,departing}; class Plane{ public: Plane(); Plane(int flt,int time,Plane_s
www.eeworm.com/read/332916/12717268

h sio_uart.h

#ifndef __SIO_UART_H__ #define __SIO_UART_H__ // write your header here enum BaseType{UartOpen=0,UartClose}; enum SubStatus{Stop=0,Record,Play,Download,Upload,Receive_data,RePlay_All,RePlay};
www.eeworm.com/read/242534/13001334

h urls.h

#ifndef H_LOADER_URLS #define H_LOADER_URLS enum urlprotocol_t { URL_METHOD_FTP, URL_METHOD_HTTP }; typedef enum urlprotocol_t urlprotocol; struct iurlinfo { urlprotocol protocol; char * add
www.eeworm.com/read/320625/13421179

cxx ibgotype.cxx

#include "ibgoctree.hxx" #include "wzoutput.hxx" const ibgIndex ibgOctreeType::XDim = 3; typedef enum { ldirp,ldirn,ldir0 }ibgBintreldirection; typedef enum { ldirp0,ldir0p,ldirn0,ld
www.eeworm.com/read/136812/5861672

h micro.h

/* @(#)micro.h 1.1 92/07/30 SMI */ /* * Micro-assembler global defines * micro.h 1.0 85/06/06 */ typedef enum {False=0, True} Boolean; typedef enum {NEITHER, NUMBER, ALPHA} SYMTYPE; typedef enu
www.eeworm.com/read/128627/5980445

cpp ex3.cpp

#include #include void main() { const int MAXNUM=1000; char str[MAXNUM]; char stack[MAXNUM/2]; enum sta {s,f}; enum sta k; k=s; cout
www.eeworm.com/read/127883/14329950

c 词法.c

#include #include #include typedef enum { ID,NUM,ASSIGN,EQ,LT,MT,PLUS,MINUS,TIMES,OVER,LPAREN,RPAREN,SEMI,ERROR}TokenType; typedef enum { START,INASSIGN,INNUM,
www.eeworm.com/read/226201/14488546

bas mdlsystem.bas

Attribute VB_Name = "mdlSystem" Option Explicit Public Enum BUID BROWSER_W = 0 UPDATE_W = 1 INSERT_W = 2 DELETE_W = 3 End Enum 'Purpose: Get Database Parameter Public Fu