//声明:CopyFile( lpExistingFileName: PChar; {源文件}
lpNewFileName: PChar; {目标文件} bFailIfExists: BOOL {如果目标文件存在, True: 失败; False:
覆盖}): BOOL;//例1:beg...
#include "stdafx.h"#include #include using
namespace std;HANDLE hMutex;DWORD WINAPI Fun(LPVOID lp){ while(1){
WaitForSingleObject(hMutex,INFINITE); .....
分类:
编程语言 时间:
2014-05-08 22:41:35
阅读次数:
406
本来是用一个USB扩展把一个USB括成4个,然后把USB转串口连接上,虽然设备管理器可以找到用SSCOM也能找到,但是用API就是打不开,最后把USB转串插在电脑的一个USB上就可以啦!
1 #include 2 #include 3 #include 4 5 bool openp...
1 #include 2 #include 3 #include 4 5 HANDLE hComm;
6 OVERLAPPED m_ov; 7 COMSTAT comstat; 8 DWORD m_dwCommEvents; 9 10
//如果在调用CreateF...
先看下windows下的使用:
LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM);这里就有一个CALLBACK,转到定义看一下
#elif (_MSC_VER >= 800) || defined(_STDCALL_SUPPORTED)
#define CALLBACK __stdcall
#define WINAPI...
#include "stdafx.h"#include // 函数声明typedef BOOL
(WINAPI* Proc_CreateProcessW)(LPCWSTR lpApplicationName, LPWSTR lpCommandLine,
...
分类:
其他好文 时间:
2014-05-01 20:05:48
阅读次数:
400
#include #include
//using namespace std;
DWORD WINAPI Fun1Proc(
LPVOID lpParameter // thread data
);
DWORD WINAPI Fun2Proc(
LPVOID lpParameter // thread data
);
int index=0;
int tickets=100;...
分类:
编程语言 时间:
2014-05-01 18:25:42
阅读次数:
323
思路1)从dll中导入 FlashWindowEx函数2)调用 1 // 声明 2 #if
defined (__cplusplus) 3 extern "C"{ 4 #endif 5 WINUSERAPI BOOL WINAPI
FlashWindowEx(PFLASHWINFO pfwi); 6...
分类:
其他好文 时间:
2014-04-29 10:17:46
阅读次数:
336