代码搜索:struct
找到约 10,000 项符合「struct」的源代码
代码结果 10,000
www.eeworm.com/read/378014/2692639
h struct.h
typedef enum
{
MESSAGE_INFO,
MESSAGE_ERROR,
MESSAGE_ENDRECORDING,
MESSAGE_FILECAPTURED
} DSHOW_MESSAGE;
typedef struct
{
DSHOW_MESSAGE dwMessage;
WCHAR* wzMess
www.eeworm.com/read/378014/2692649
h struct.h
typedef enum
{
MESSAGE_INFO,
MESSAGE_ERROR,
MESSAGE_ENDRECORDING,
MESSAGE_FILECAPTURED
} DSHOW_MESSAGE;
typedef struct
{
DSHOW_MESSAGE dwMessage;
WCHAR* wzMess
www.eeworm.com/read/375190/2730456
hpp struct.hpp
/*=============================================================================
Copyright (c) 2001-2006 Joel de Guzman
Copyright (c) 2005-2006 Dan Marsden
Distributed under the Boost Soft
www.eeworm.com/read/375190/2730689
hpp struct.hpp
/*=============================================================================
Copyright (c) 2001-2007 Joel de Guzman
Distributed under the Boost Software License, Version 1.0. (See accompan
www.eeworm.com/read/361993/2940065
h struct.h
#pragma once
#include "stdafx.h"
struct DESC_BASENETWORK
{
WORD wSockEventWinMsgID;
void (*ReceivedMsg)(DWORD dwInex,char* pMsg,DWORD dwLen);
void (*OnDisconnect)(DWORD dwInex);
v
www.eeworm.com/read/359026/2981471
java struct.java
/*
* Copyright (c) 2003, Artem Rudoy
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following c
www.eeworm.com/read/358128/3001554
pm struct.pm
package Class::Struct;
## See POD after __END__
use 5.006_001;
use strict;
use warnings::register;
our(@ISA, @EXPORT, $VERSION);
use Carp;
require Exporter;
@ISA = qw(Exporter);
@EXPORT = qw(stru
www.eeworm.com/read/350504/3124787
c struct.c
/*
* struct.c - debug a program with a struct
*/
#include
#include
#include
void err_quit(char *msg);
int main(int argc, char *argv[])
{
int i = 0;
st
www.eeworm.com/read/263232/4304079
h struct.h
//
// Struct.h -- structures and declarations for windows
// commander.
//
#ifndef __STRUCT_H__
#define __STRUCT_H__
typedef struct _ITEMINFO
{
int nIcon;
CString strFileType;
W
www.eeworm.com/read/263232/4304125
cpp struct.cpp
#include
struct Struct1
{
int x;
int y;
};
struct Struct2 : Struct1
{
int z;
};
int main()
{
Struct2 s;
printf ("sizeof (Struct1) is %d\n