代码搜索:Command
找到约 10,000 项符合「Command」的源代码
代码结果 10,000
www.eeworm.com/read/235283/4652010
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/235283/4652022
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/234994/4654518
c command.c
#include
#define STATE_WHITESPACE 0
#define STATE_WORD 1
#define MAX_ARGS MAX_CMD_LEN/4
int argc, num_commands;
char *argv[MAX_ARGS];
int Help();
int Dir();
typedef i
www.eeworm.com/read/234994/4654519
h command.h
#include
#include
#include
#include "serial.h"
#define MAX_CMD_LEN 128
#define prompt() PrintStr("\\>")
int ParseCmd(char *cmdline, int cmd_len);
www.eeworm.com/read/232657/4696486
java command.java
package command;
public interface Command {
public abstract void execute();
}
www.eeworm.com/read/232657/4696492
java command.java
package command;
public interface Command {
public abstract void execute();
}
www.eeworm.com/read/232657/4696498
java command.java
package command;
public interface Command {
public abstract void execute();
}
www.eeworm.com/read/232657/4696504
java command.java
package command;
public interface Command {
public abstract void execute();
}
www.eeworm.com/read/232407/4699976
h command.h
#ifndef _VCF_COMMAND_H__
#define _VCF_COMMAND_H__
//Command.h
/*
Copyright 2000-2004 The VCF Project.
Please see License.txt in the top level directory
where you installed the VCF.
*/
#if _MSC_VER
www.eeworm.com/read/231546/4714147
pm command.pm
package ExtUtils::Command;
use 5.005_64;
use strict;
# use AutoLoader;
use Carp;
use File::Copy;
use File::Compare;
use File::Basename;
use File::Path qw(rmtree);
require Exporter;
our(@ISA, @EXPORT,