代码搜索:structures
找到约 10,000 项符合「structures」的源代码
代码结果 10,000
www.eeworm.com/read/119473/14829494
asm pgm5_6.asm
; Arrays of Structures
;
; Randall Hyde
dseg segment para public 'data'
; A structure that defines an (x,y) coordinate.
; Note that the Point data type requires four bytes.
Point str
www.eeworm.com/read/118523/14865446
inc raresed.inc
ResEdInstall PROTO :DWORD
ResEdUninstall PROTO
GridInstall PROTO :DWORD
;Dialog memory size
MaxMem equ 128*1024*3
MaxCap equ 241
;Dialog structures
DLGHEAD struct
changed dd
www.eeworm.com/read/117412/14924209
java comparison.java
// Fig. 2.20: Comparison.java
// Compare integers using if structures, relational operators
// and equality operators.
// Java extension packages
import javax.swing.JOptionPane;
public class
www.eeworm.com/read/115194/15022275
h http.h
// Http.h : structures, functions and definitions for http service
//
// This is a part of the Microsoft Foundation Classes C++ library.
// Copyright (C) 1997-1998 Microsoft Corporation
// All rig
www.eeworm.com/read/115194/15022321
cpp http.cpp
// Http.cpp : structures, functions and definitions for http service
//
// This is a part of the Microsoft Foundation Classes C++ library.
// Copyright (C) 1997-1998 Microsoft Corporation
// All r
www.eeworm.com/read/214672/15092130
h coff.h
/* coff.h
* Data structures that describe the MIPS COFF format.
*/
struct filehdr {
unsigned short f_magic; /* magic number */
unsigned short f_nscns; /* number of
www.eeworm.com/read/214672/15092271
h console.h
// console.h
// Data structures to simulate the behavior of a terminal
// I/O device. A terminal has two parts -- a keyboard input,
// and a display output, each of which produces/accepts
// charac
www.eeworm.com/read/214672/15092275
h timer.h
// timer.h
// Data structures to emulate a hardware timer.
//
// A hardware timer generates a CPU interrupt every X milliseconds.
// This means it can be used for implementing time-slicing, or for
//
www.eeworm.com/read/214343/15105152
java abstractqueue.java
// The interface for stacks.
// (c) 1998, 2001 duane a. bailey
package structure;
/**
* An abstract structure implementing features common to all first-in, first-out
* structures in this package.