代码搜索:enum
找到约 10,000 项符合「enum」的源代码
代码结果 10,000
www.eeworm.com/read/366702/2868943
c error6.c
template
struct tento {
enum {value = 10*tento::value};
};
struct tento { // { dg-error "" }
enum {value=1};
};
int main() {
if (tento::value != 10000) return -1;
}
www.eeworm.com/read/361993/2939711
h commongamedefine.h
#ifndef __COMMONGAMEDEFINE_H__
#define __COMMONGAMEDEFINE_H__
enum TACTIC_FAILED_REASON
{
eTFR_Naeryuk,
eTFR_MemberDie,
eTFR_TimeOver,
};
//for GMPower
enum eGM_POWER
{
eGM_POWER_
www.eeworm.com/read/254049/4390812
properties messages.properties
ERR_LIST_INVALID_PAGE_1 =The given page number "{0}" is invalid.
ERR_LIST_ENUM_PARSE_2 =The value "{0}" can not be parsed into an enum element of type "{1}".
ERR_LIST_INVALID
www.eeworm.com/read/410967/11262960
h sgl.h
#ifndef _SGL_H_
#define _SGL_H_
#include "sglkey.h"
#ifdef __cplusplus
extern "C" {
#endif
enum __sglBuffer
{
SGL_FRONTBUFFER = 0,
SGL_BACKBUFFER
};
typedef enum __sglBuffer sg
www.eeworm.com/read/410967/11262978
h sgl.h
#ifndef _SGL_H_
#define _SGL_H_
#include "sglkey.h"
#ifdef __cplusplus
extern "C" {
#endif
enum __sglBuffer
{
SGL_FRONTBUFFER = 0,
SGL_BACKBUFFER
};
typedef enum __sglBuffer sg
www.eeworm.com/read/135305/13941463
bas rgassistant.bas
Attribute VB_Name = "rg"
'Ramon Guerrero
'ZoneCorp@dallas.net
'ZoneCorp@AOL.com
'ZoneCorp@Compuserve.com
Public Enum ZoomDirection
ZoomFormOpen = 0
ZoomFormClosed = 1
End Enum
Public Zoom
www.eeworm.com/read/109925/15545463
bas rgassistant.bas
Attribute VB_Name = "rg"
'Ramon Guerrero
'ZoneCorp@dallas.net
'ZoneCorp@AOL.com
'ZoneCorp@Compuserve.com
Public Enum ZoomDirection
ZoomFormOpen = 0
ZoomFormClosed = 1
End Enum
Public Zoom
www.eeworm.com/read/109925/15545584
bas rgassistant.bas
Attribute VB_Name = "rg"
'Ramon Guerrero
'ZoneCorp@dallas.net
'ZoneCorp@AOL.com
'ZoneCorp@Compuserve.com
Public Enum ZoomDirection
ZoomFormOpen = 0
ZoomFormClosed = 1
End Enum
Public Zoom
www.eeworm.com/read/106050/15648234
bas rgassistant.bas
Attribute VB_Name = "rg"
'Ramon Guerrero
'ZoneCorp@dallas.net
'ZoneCorp@AOL.com
'ZoneCorp@Compuserve.com
Public Enum ZoomDirection
ZoomFormOpen = 0
ZoomFormClosed = 1
End Enum
Public Zoom
www.eeworm.com/read/105551/15665258
h type.h
#ifndef __TYPE.H__
#define __TYPE.H__
#include "Const.h"
// 布尔定义
typedef int bool;
// 编辑模式
enum Mode
{
MenuMode,
EditMode
};
// 变量类型
enum VarType
{
Integer, // 整数
Real,