代码搜索:Structs
找到约 2,696 项符合「Structs」的源代码
代码结果 2,696
www.eeworm.com/read/15963/601035
h text_defs.h
#ifndef _TEXT_DEFS_H_
#define _TEXT_DEFS_H_
#include "mom_structs.h"
#include
#include
#include "vm_enc_defs.h"
#define ESCAPE 7167
www.eeworm.com/read/16005/642035
h text_defs.h
#ifndef _TEXT_DEFS_H_
#define _TEXT_DEFS_H_
#include "mom_structs.h"
#include
#include
#include "vm_enc_defs.h"
#define ESCAPE 7167
www.eeworm.com/read/480930/1310582
h a.out.h
#ifndef __ALPHA_A_OUT_H__
#define __ALPHA_A_OUT_H__
#include
/*
* OSF/1 ECOFF header structs. ECOFF files consist of:
* - a file header (struct filehdr),
* - an a.out header (st
www.eeworm.com/read/470720/1447867
c anon.c
// 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;
A b (a);
a = b;
www.eeworm.com/read/470693/1459813
c anon.c
// 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;
A b (a);
a = b;
www.eeworm.com/read/470423/1473888
c osxaccess.c
#include
#include
#include
#define VERSION "1.01"
/**
* AEDesc code from SWT, os_structs.c
* Copyright (c) 2000, 2006 IBM Corporation and others.
www.eeworm.com/read/240079/4593160
h text_defs.h
#ifndef _TEXT_DEFS_H_
#define _TEXT_DEFS_H_
#include "mom_structs.h"
#include
#include
#include "vm_enc_defs.h"
#define ESCAPE 7167
www.eeworm.com/read/209559/4971484
h a.out.h
#ifndef __ALPHA_A_OUT_H__
#define __ALPHA_A_OUT_H__
#include
/*
* OSF/1 ECOFF header structs. ECOFF files consist of:
* - a file header (struct filehdr),
* - an a.out header (st
www.eeworm.com/read/195013/5121596
h a.out.h
#ifndef __ALPHA_A_OUT_H__
#define __ALPHA_A_OUT_H__
#include
/*
* OSF/1 ECOFF header structs. ECOFF files consist of:
* - a file header (struct filehdr),
* - an a.out header (st
www.eeworm.com/read/190666/5175660
c anon.c
// 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;
A b (a);
a = b;