代码搜索:bool
找到约 10,000 项符合「bool」的源代码
代码结果 10,000
www.eeworm.com/read/252631/12273253
cpp bool.cpp
// BOOL.cpp : Defines the class behaviors for the application.
//
#include "stdafx.h"
#include "BOOL.h"
#include "BOOLDlg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static cha
www.eeworm.com/read/252631/12273254
dsw bool.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
###############################################################################
www.eeworm.com/read/252631/12273255
rc bool.rc
//Microsoft Developer Studio generated resource script.
//
#include "resource.h"
#define APSTUDIO_READONLY_SYMBOLS
/////////////////////////////////////////////////////////////////////////////
www.eeworm.com/read/252631/12273261
opt bool.opt
www.eeworm.com/read/252631/12273262
ncb bool.ncb
www.eeworm.com/read/132355/14096935
h bool.h
www.eeworm.com/read/132141/14107553
h bool.h
#ifndef bool_
#define bool_
typedef int bool;
const bool false = 0;
const bool true = 1;
#endif
www.eeworm.com/read/233424/14151460
h bool.h
/* bool.h - Boolean definitions */
/* Copyright 1998-2010 Wind River Systems, Inc. */
/*
* modification history
* --------------------
* 01a,25mar98,pai written
*
*/
#ifndef __INCBoolh
#d
www.eeworm.com/read/126128/14444856
h bool.h
www.eeworm.com/read/124972/14521666
java bool.java
//: c03:Bool.java
// Relational and logical operators.
// From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002
// www.BruceEckel.com. See copyright notice in CopyRight.txt.
import com.bruceeckel.