代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
C
】
重定向控制台输出的工具
作者:
DDT
/ 发布于
2013/1/8
/
493
////////////////////////////////////////////////////////////////////// // // Redirector - to redirect the input / output of a console // // Developer: Jeff Lee // Dec 10, 2001 // ////////////////////////////////////////////////////////////////////// #if !defined(AFX_REDIR_H__4FB57DC3_29A3_11D5_BB60_006097553C52__INCLUDED_) #define AFX_REDIR_H__4FB57DC3_29A3_11D5_BB60_006097553C52__INCLUDED_ #if _MSC_VER > 1000 #pragma once #endif // _MSC_VER > 1000 class CRedirector : public CObject { public: CRedirector(); virtual ~CRedirector(); private: HANDLE m_hThread; // thread to receive the output of the child process HANDLE m_hEvtStop; // event to notify the redir thread to exit DWORD m_dwThreadId; // id of the redir thread DWORD m_dwWaitTime; // wait time to check the status of the child process protected: HANDLE m_hStdinWrite; // write end of child's stdin pipe HANDLE m_hStdoutRead; // read end of child's stdout pipe HANDLE m_hChildProcess; BOOL LaunchChild(LPCTSTR pszCmdLine, HANDLE hStdOut, HANDLE hStdIn, HANDLE hStdErr); int RedirectStdout(); void DestroyHandle(HANDLE& rhObject); static DWORD WINAPI OutputThread(LPVOID lpvThreadParam); protected: // overrides: virtual void WriteStdOut(LPCSTR pszOutput); virtual void WriteStdError(LPCSTR pszError); public: BOOL Open(LPCTSTR pszCmdLine); virtual void Close(); BOOL Printf(LPCTSTR pszFormat, ...); void SetWaitTime(DWORD dwWaitTime) { m_dwWaitTime = dwWaitTime; } }; #endif // !defined(AFX_REDIR_H__4FB57DC3_29A3_11D5_BB60_006097553C52__INCLUDED_)
试试其它关键字
重定向
同语言下
.
获取手机通讯录 iOS去除数字以外的所有字符
.
异步加载音乐等资源
.
交通罚单管理系统
.
freemark实现,简单的替换
.
计算斐波那契数列
.
base64解码 包括解码长度
.
图像显示
.
冒泡排序
.
输入十进制数,输出指定进制
.
链式栈
可能有用的
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
.
处理大图片在缩略图时的展示
DDT
贡献的其它代码
(
160
)
.
Oracle统计表的数据行和数据块信息
.
html标签闭合检测与修复
.
Powershell日期计算
.
Powershell的Base64编解码
.
Powershell并行循环
.
Powershell目录中搜索文本
.
Powershell枚举远程机器上的本地权限组
.
VBScript解析csv文件
.
快速排序之Powershell
.
批处理输出格式化时间字符串
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3