代码搜索:Command
找到约 10,000 项符合「Command」的源代码
代码结果 10,000
www.eeworm.com/read/358155/2999432
java command.java
public interface Command
{
public void Execute();
}
www.eeworm.com/read/358155/2999489
java command.java
public interface Command
{
public void Execute();
}
www.eeworm.com/read/358128/2999825
pm command.pm
#
# /*
# * *********** WARNING **************
# * This file generated by ModPerl::WrapXS/0.01
# * Any changes made here will be lost
# * ***********************************
# * 01: lib/ModPerl/C
www.eeworm.com/read/358128/3000130
pm command.pm
package ExtUtils::Command;
use 5.00503;
use strict;
use Carp;
use File::Copy;
use File::Compare;
use File::Basename;
use File::Path qw(rmtree);
require Exporter;
use vars qw(@ISA @EXPORT @EXPORT_OK $
www.eeworm.com/read/358047/3007106
cpp command.cpp
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//
// Use of this sample source code is subject to the terms of the Microsoft
// license agreement under which you licensed thi
www.eeworm.com/read/358047/3007149
h command.h
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//
// Use of this sample source code is subject to the terms of the Microsoft
// license agreement under which you licensed thi
www.eeworm.com/read/357505/3015153
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/357505/3015163
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