代码搜索:自举升压结构
找到约 10,000 项符合「自举升压结构」的源代码
代码结果 10,000
www.eeworm.com/read/394238/8241226
txt resource.c.txt
any problems, send email to netxiong@263.net
相关文件:
/include/linux/ioport.h
**************************基本数据结构**********************************************
系统已经预先定义好了一些资源的根节点。
struct resou
www.eeworm.com/read/394238/8241306
txt check.c.txt
any questions,send email to netxiong@263.net
相关文件
/linux/genhd.h
*********************基本数据结构****************************
(1):struct gendisk *gendisk_head; //所有的gendisk的头部指针
(2):struct gendis
www.eeworm.com/read/394157/8243350
h public.h
/********************************************public.h**********************************************/
/*
本文件中包含程序中必要的结构体,枚举类型,以及常用的函数
*/
#define STACK_INIT_SIZE ParkingSize //把stack.h中的STACK_INIT
www.eeworm.com/read/293882/8266289
h c2-3.h
// c2-3.h 线性表的静态单链表存储结构
#define MAX_SIZE 100 // 链表的最大长度
typedef struct
{
ElemType data;
int cur;
}component,SLinkList[MAX_SIZE];
www.eeworm.com/read/293882/8267095
h c2-3.h
/* c2-3.h 线性表的静态单链表存储结构 */
#define MAX_SIZE 100 /* 链表的最大长度 */
typedef struct
{
ElemType data;
int cur;
}component,SLinkList[MAX_SIZE];
www.eeworm.com/read/293882/8267282
h c3-2.h
/* c3-2.h 单链队列--队列的链式存储结构 */
typedef struct QNode
{
QElemType data;
struct QNode *next;
}QNode,*QueuePtr;
typedef struct
{
QueuePtr front,rear; /* 队头、队尾指针 */
}LinkQueue;
www.eeworm.com/read/393663/8270580
c fatinit.c
#ifndef _FAT_DEFINE
#include "FAT.c"
#endif
void FATInit(void);
void FATInit(void)
{
register BYTE i;
DPT = (struct DPTStr *)(DiskBuffer+0x1be); //分区表结构指针
BOOTSEC = (struct BootSec
www.eeworm.com/read/392789/8325942
h c3-2.h
/* c3-2.h 单链队列--队列的链式存储结构 */
typedef struct QNode
{
QElemType data;
struct QNode *next;
}QNode,*QueuePtr;
typedef struct
{
QueuePtr front,rear; /* 队头、队尾指针 */
}LinkQueue;
www.eeworm.com/read/292398/8357792
dat errorass1.dat
错误信息: Block nesting error
中文注释: 嵌套过程,段,结构,宏指令,IRP,IRPC或REPT不是正确结束.如嵌套的外层已终止,而内层还是打开状态
www.eeworm.com/read/173560/9651055
h c3-2.h
/* c3-2.h 单链队列--队列的链式存储结构 */
typedef struct QNode
{
QElemType data;
struct QNode *next;
}QNode,*QueuePtr;
typedef struct
{
QueuePtr front,rear; /* 队头、队尾指针 */
}LinkQueue;