代码搜索:pointers
找到约 4,056 项符合「pointers」的源代码
代码结果 4,056
www.eeworm.com/read/414076/11131406
inc systructs.inc
struct EXCEPTION_POINTERS
ExceptionRecord dd ?
ContextRecord dd ?
ends
SIZE_OF_80387_REGISTERS = 80
struct FLOATING_SAVE_AREA
ControlWord dd ?
StatusWord dd ?
TagWord dd ?
www.eeworm.com/read/411404/11246658
inc dos.inc
; DOS Interface Macros - Version 1.3 - for Microsoft Macro Assembler 6.1
; (C) Copyright Microsoft Corporation, 1987, 1988, 1989, 1990, 1993
; Typedefs for testing pointers
NPVOID TYPEDEF NEAR P
www.eeworm.com/read/202486/15381557
cpp pr0707.cpp
// Programming with C++, Second Edition, by John R. Hubbard
// Copyright McGraw-Hill, 2000
// Problem 7.7 on page 175
// Converting an array of pointers
#include
using namespace
www.eeworm.com/read/202486/15381802
cpp pr0703.cpp
// Programming with C++, Second Edition, by John R. Hubbard
// Copyright McGraw-Hill, 2000
// Problem 7.3 on page 175
// Converting an array of pointers
#include
using namespace
www.eeworm.com/read/202486/15381944
cpp pr0706.cpp
// Programming with C++, Second Edition, by John R. Hubbard
// Copyright McGraw-Hill, 2000
// Problem 7.6 on page 175
// The maximum in an array of pointers
#include
using namesp
www.eeworm.com/read/109973/15544247
makefile
include Makefile.h
all::
CODE_DIRS = basics details \
poly traits inherit meta exprtmpl \
types pointers tuples functors
all::
@for DIR in $(CODE_DIRS); \
do \
www.eeworm.com/read/109829/15547251
h tstree.h
#ifndef _TS_TREE_H_
#define _TS_TREE_H_
typedef struct tsTreeNode *TSTptr;
/*
* The value stored at the node is splitchar,
* and the three pointers represent the three children.
* The roo
www.eeworm.com/read/101208/15841481
c printv.c
/*@A (C) 1992 Allen I. Holub */
#include
void printv( fp, argv )
FILE *fp;
char **argv;
{
/* Print an argv-like array of pointers t
www.eeworm.com/read/100263/15879562
h tilde.h
/* tilde.h: Externally available variables and function in libtilde.a. */
#if !defined (__TILDE_H__)
# define __TILDE_H__
/* Function pointers can be declared as (Function *)foo. */
#if !defined (_
www.eeworm.com/read/192259/8390939
c sysfile.c
#include "calld.h"
static FILE *fpsys = NULL;
static int syslineno; /* for error messages */
static char sysline[MAXLINE];
/* can't be automatic; sys_next() returns pointers into here */