代码搜索:Command
找到约 10,000 项符合「Command」的源代码
代码结果 10,000
www.eeworm.com/read/115931/14996342
mak command.mak
www.eeworm.com/read/115278/15019423
c command.c
/*****************************************************************************
*
* xdbx - X Window System interface to the dbx debugger
*
* Copyright 1989 The University of Texas at Austin
* C
www.eeworm.com/read/216155/15025365
h command.h
//**** ATMEL AVR - A P P L I C A T I O N N O T E ************************
//*
//* Title: AVR068 - STK500 Communication Protocol
//* Filename: command.h
//* Version: 1.0
//* Last updated: 31
www.eeworm.com/read/214748/15089516
com command.com
www.eeworm.com/read/214423/15100487
h command.h
#if !defined(COMMAND_H)
#define COMMAND_H
#include
// 命令栈数据结构
struct CommandDS
{
char szElement[81];
};
// 命令栈链表
struct CommandList
{
struct CommandDS Command;
struct
www.eeworm.com/read/214423/15100511
c command.c
#include "Command.h"
#include "Server.h"
#include
// 添加一个元素到命令栈中
struct CommandList *Add_Command(struct CommandList *pNode,struct CommandDS Command)
{
if (pNode->pNext = (struct C
www.eeworm.com/read/214423/15100560
h command.h
#if !defined(COMMAND_H)
#define COMMAND_H
#include
struct CommandDS
{
char szElement[81];
};
struct CommandList
{
struct CommandDS Command;
struct CommandList *pNext;
}
www.eeworm.com/read/214423/15100592
c command.c
#include "Command.h"
#include "client.h"
#include
struct CommandList *Add_Command(struct CommandList *pNode,struct CommandDS Command)
{
if (pNode->pNext = (struct CommandList *)mal
www.eeworm.com/read/213563/15130343
java command.java
package ch10.section04;
public interface Command {
public abstract void execute();
}
www.eeworm.com/read/213222/15140920