⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 customer.cpp

📁 pv 操作范例 内容全面 适合初学者以及专业人员参考和借鉴~~~~~~想写pv操作的必需代码
💻 CPP
字号:
// Customer.cpp : 定义控制台应用程序的入口点。
//
// ShareDll.cpp : 定义 DLL 应用程序的入口点。
//
// Chen Danwei  2005-10-1
//
// for the demo of PV opreation in OS classe
//pls contact with chendanwei@hotmail.com if  any question about it

#include "stdafx.h"
#include "windows.h"


#include "..\ShareDllLib.h"


int _tmain(int argc, _TCHAR* argv[])
{

	LONG aData = 0;


	while( 1 )
	{
		
		ReadBuffer(aData);

		printf("read %d  from the buffer.....\n", aData);
	}

	return 0;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -