?? producer.cpp
字號:
// producer.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 "../ShareDllLib.h"
int _tmain(int argc, _TCHAR* argv[])
{
LONG aData = 0;
while( 1 )
{
++aData;
WriteBuffer(aData);
printf("write %d to the buffer.....\n", aData);
Sleep(100);
}
return 0;
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -