代码搜索:Command
找到约 10,000 项符合「Command」的源代码
代码结果 10,000
www.eeworm.com/read/397826/2399822
java command.java
/* Generated by Together */
package com.javapatterns.command.book;
public interface Command {
void execute();
}
www.eeworm.com/read/397826/2399829
java command.java
package com.javapatterns.command.stocktrader;
public interface Command
{
public abstract void execute ( );
}
www.eeworm.com/read/397439/2401906
h command.h
/* Maximum number of arguments in a command line:*/
#define CMDLINESIZE 280
#define ARGCNT 8
#define CMD_SUCCESS 0
#define CMD_FAILURE -1
#
www.eeworm.com/read/397399/2402797
h command.h
/* Maximum number of arguments in a command line:*/
#define CMDLINESIZE 280
#define ARGCNT 8
#define CMD_SUCCESS 0
#define CMD_FAILURE -1
#
www.eeworm.com/read/396039/2424428
h command.h
#ifndef COMMAND_H
#define COMMAND_H
#include
#include
#define MPD_CMD_ADD 10
#define MPD_CMD_REMOVE 11
#define MPD_CMD_LAUNCH 20
#define MPD_CMD_LAUNCH_RET 21
#defi
www.eeworm.com/read/396039/2424446
cpp command.cpp
#include "Command.h"
HANDLE hCommandAvailableEvent = CreateEvent(NULL, TRUE, FALSE, NULL);
HANDLE hCommandMutex = CreateMutex(NULL, FALSE, NULL);
CommandData *pCommandList = NULL;
// Function name :
www.eeworm.com/read/395029/2450720
java command.java
// Copyright (c) 2000 Just Objects B.V.
// Distributable under LGPL license. See terms of license at gnu.org.
package nl.justobjects.pushlet.core;
import nl.justobjects.pushlet
www.eeworm.com/read/394755/2453685
c command.c
#include
#include
#include
#include
#define PROMPT ">"
void
getline(char *buf,int *num,int max_num)
{
static int line_len = 0;
www.eeworm.com/read/394446/2456952
java command.java
import com.jacob.com.*;
public class Command extends Dispatch
{
public Command()
{
super("ADODB.Command");
}
/**
* This constructor is used instead of a case operation to
*