代码搜索:task
找到约 10,000 项符合「task」的源代码
代码结果 10,000
www.eeworm.com/read/168226/9931399
cpp task.cpp
/**********************************************************************
*
* Filename: task.cpp
*
* Description: An implementation of real-time tasks for ADEOS.
*
* Notes: TaskLis
www.eeworm.com/read/168226/9931402
obj task.obj
www.eeworm.com/read/168226/9931420
h task.h
/**********************************************************************
*
* Filename: task.h
*
* Description: Header file for the Task class.
*
* Notes:
*
*
* Copyright (
www.eeworm.com/read/362992/9972357
c task.c
/* tsk1.c - Task #1 */
#include
#include
#include
#include "misc.h"
#include "appl.h"
void task(ULONG me, ULONG l2, ULONG l3, ULONG l4)
{
bprintf("%s begin\n", (char *
www.eeworm.com/read/362473/9997630
h task.h
#ifndef _TASK_H_
#define _TASK_H_
#include "CommHead.h"
const int THREAD_NAME_LENGTH = 50;
//定义一个任务类,作为一切任务的基类
class CTask
{
public:
CTask();
CTask(CTask* task);
virtual bool Ma
www.eeworm.com/read/362473/9997659
cpp task.cpp
#include
#include "Task.h"
#include "TaskQueue.h"
extern CTaskQueue theQueue;
//注册任务,其实就是将任务添加到任务队列
int RegisterTask(CTask*task);
using namespace std;
CTask::CTask()
{
}
www.eeworm.com/read/166678/10008383
h task.h
/*
* Copyright 2002-2004, Mersad Team, Allame Helli High School (NODET).
*
* This program is free software, you can redistribute it and/or modify
* it under the terms of the GNU General Public
www.eeworm.com/read/166678/10008403
cpp task.cpp
/*
* Copyright 2002-2004, Mersad Team, Allame Helli High School (NODET).
*
* This program is free software, you can redistribute it and/or modify
* it under the terms of the GNU General Public
www.eeworm.com/read/362045/10021715
h task.h
#pragma once
#include "AddressListDlg.h"
//任务类,包含地址对话框
class CTask : public CObject
{
public:
int m_eTimes; //重搜索次数
int m_eWaitTime; //间隔时间
BOOL m_bIsAuto; //是否重搜索
privat
www.eeworm.com/read/362045/10021784
cpp task.cpp
#include "StdAfx.h"
#include ".\task.h"
#include "AddressListDlg.h"
#include
//引入外部全局变量
HANDLE hProcess; //当前选中的进程句柄
extern PVOID m_pData; //源数据
extern DWORD dwDataLength;
ex