代码搜索:enum
找到约 10,000 项符合「enum」的源代码
代码结果 10,000
www.eeworm.com/read/440906/1777859
c enum.c
// PRMS Id: 4337
// Bug: Enums are not looked up to arbitrary depth.
// Build don't link:
struct W {
enum A { B };
};
struct X : public W
{};
struct Y : public X
{};
struct S
{
X::A a1;
Y::A
www.eeworm.com/read/432906/1887675
c enum.c
/*
* Copyright (C) 2002, 2004 Mike Wray
*
* This library is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
www.eeworm.com/read/432906/1887677
h enum.h
/*
* Copyright (C) 2002, 2004 Mike Wray
*
* This library is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
www.eeworm.com/read/430360/1931747
asm enum.asm
; #########################################################################
; "Thomas Vidal"
.586
.model flat,stdcall
option casemap:none
; #######################
www.eeworm.com/read/427458/1971816
c enum.c
/*++
Copyright (c) 1997-1998 Microsoft Corporation
Module Name:
ENUM.C
Abstract:
This source file contains the routines which enumerate the USB bus
and populate the TreeVie
www.eeworm.com/read/427042/1979664
c a_enum.c
/* crypto/asn1/a_enum.c */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
* This package is an SSL implementation written
* by Eric Young (eay@cryptsoft.com).
www.eeworm.com/read/426010/1996749
tex enum.tex
\section{The ENUMLOOKUP dialplan function}
The ENUMLOOKUP function is more complex than it first may appear, and
this guide is to give a general overview and set of examples that may
be well-suited f
www.eeworm.com/read/426010/1996755
h enum.h
/*
* Asterisk -- An open source telephony toolkit.
*
* Copyright (C) 1999 - 2005, Digium, Inc.
*
* Mark Spencer
*
* See http://www.asterisk.org for more information about
www.eeworm.com/read/422785/2032169
c a_enum.c
/* crypto/asn1/a_enum.c */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
* This package is an SSL implementation written
* by Eric Young (eay@cryptsoft.com).
www.eeworm.com/read/420998/2058201
idl enum.idl
enum E {
A,
B,
C
};
interface foo {
void bar( in E e );
};