English
首页
论坛
博客
多用户博客
在线工具
在线手册
开通博客赚积分
发布资源赚积分
分类
源码开发语言/平台
当前位置:
首页
> 源码/资料 >
Windows编程
>
打印编程
> 查看源码
util.h
资源名称:
PopFaxPrinter_src_v2.01.zip [点击查看]
上传用户:
looem2003
上传日期:
2014-07-20
资源大小:
13733k
文件大小:
0k
源码类别:
打印编程
开发平台:
Visual C++
util.h:源码内容
#include <stdio.h>
#include <string>
void log(const char *text);
#define swap(type, a, b) { type t; t=a; a=b; b=t; }