全部博文(2759)
发布时间:2012-12-20 13:50:32
原文:http://blog.csdn.net/sdccyong/article/details/6289410[cpp] view plaincopy/* IDEA.h */ #ifndef IDEA_H #define IDEA_H /* define return status */ #define IDEA_SUCCESS &nbs......【阅读全文】
发布时间:2012-12-20 13:50:16
Kazam 是一款Linux上的简洁并且功能强大的桌面录制工具,喜欢录屏的童鞋可以尝试下安装改软件。您也可以选择录制声音的支持和pulseaudio的任何声音设备输入,记录任何VP8/WebM视频格式的视频。 添加 PPA 并安装命令(支持 Ubuntu Precise/Quantal/Raring): sudo add-apt-repository ppa:kazam-team/unstable-series sudo apt-get update sudo apt-get install kazam......【阅读全文】
发布时间:2012-12-20 13:49:35
#include <iostream> #ifdef WIN32 #include <windows.h> #else #include <sys/time.h> #endif using std::cout; using std::endl; long GetMillisecond() { long lMillisecond = 0L; #ifdef WIN32 SYSTEMTIME  ......【阅读全文】
发布时间:2012-12-19 01:55:18
#include <stdio.h>#include <stdlib.h>#include <string.h>#include <unistd.h>#include <fcntl.h>#include <errno.h>#include <linux/input.h>#include <linux/uinput.h>void usage(void){ printf(" Usage : keyboard <kye number> [key ......【阅读全文】