代码搜索:structs
找到约 2,696 项符合「structs」的源代码
代码结果 2,696
www.eeworm.com/read/388373/2550853
cc cnv_state_to_coords.cc
/* cnv_state_to_coords.cc */
#include
#include
#ifdef sgi
#include
#include "constants.h"
#include "structs.h"
#include "cnv_state_to_coords.h"
#inc
www.eeworm.com/read/388373/2550908
cc output_state.cc
/* output_state.cc */
#ifdef sgi
#include
#include
#include
#include
#include
#include "structs.h"
#include "outp
www.eeworm.com/read/385253/2593693
svn-base fireball.cpp.svn-base
#include "FireBall.h"
#include "gamedata.h"
#include "structs.h"
#include "../game/custom_time.h"
#include "../game/msg.h"
#include "../game/msgroute.h"
#include "../game/util.h"
#include
www.eeworm.com/read/375613/2723528
s em_stb.s
.define ___stb
.text
! Routine for copying structs.
___stb:
mov bx,sp
push si
push di
mov cx,2(bx)
mov si,4(bx)
mov di,6(bx)
rep
movb
pop di
pop si
ret
www.eeworm.com/read/366702/2871917
c anon.c
// { dg-do run }
// Bug: g++ has trouble copying anonymous structs.
typedef struct { int i; } foo;
struct A : public foo {
struct { int i; } x;
};
int main ()
{
A a;
a.i = 5;
a.x.i = 42;
www.eeworm.com/read/392414/8344120
c _adduser.c
#include
#include
#include "../include/stddef.h"
#include "../include/structs.h"
void _adduser(int index)
{
char name[10];
char pwd[10];
int money;
extern SHM *shm;
p
www.eeworm.com/read/392414/8344147
pc operdb.pc
#include
#include"../include/structs.h"
EXEC SQL INCLUDE SQLCA;
int operdb(USER *userinfo,int flag)
{
EXEC SQL BEGIN DECLARE SECTION;
VARCHAR user[15],pass[15],tnsname[20];
char name[10];
www.eeworm.com/read/392414/8344179
pc operdb.pc
#include
#include"../include/structs.h"
EXEC SQL INCLUDE SQLCA;
int operdb(USER *userinfo,int flag)
{
EXEC SQL BEGIN DECLARE SECTION;
VARCHAR user[15],pass[15],tnsname[20];
char name[10];
www.eeworm.com/read/100148/15882446
h windll.h
/*
WiZ 1.0 header file for zip dll
*/
#ifndef _WINDLL_H
#define _WINDLL_H
#include "structs.h"
#ifndef MSWIN
#define MSWIN
#endif
#ifndef USE_ZIPMAIN
# define USE_ZIPMAIN
#endif
#ifndef NDEBUG
www.eeworm.com/read/184890/9067774
h stack2.h
//: C05:Stack2.h
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
// Nested structs via linked list
#if