国产毛片a精品毛-国产毛片黄片-国产毛片久久国产-国产毛片久久精品-青娱乐极品在线-青娱乐精品
電子工程網(wǎng)
標題:
C#下采用索引對WinIO的封裝類(WinIO.cs)
[打印本頁]
作者:
hotpower
時間:
2009-4-3 00:10
標題:
C#下采用索引對WinIO的封裝類(WinIO.cs)
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Forms;//MessageBox需要
using System.Runtime.InteropServices;//加動態(tài)鏈接庫需要
//菜農(nóng)
HotPower@126.com
2008.11.12 于雁塔村
namespace WindowsFormsApplication2
{
#region C#下采用索引對WinIO的封裝類(WinIO.cs)
/*
應(yīng)用時應(yīng)該在Form1.cs中加入:
private WinIO WinIOPort = new WinIO();
例: WinIOPort[0x378] = 0x55;
x = WinIOPort[0x379, 2];
*/
public class WinIO
{
//動態(tài)鏈接庫的引用
[DllImport("winio.dll")]
public static extern bool InitializeWinIo();
[DllImport("winio.dll")]
public static extern void ShutdownWinIo();
[DllImport("winio.dll")]
public static extern bool GetPortVal(IntPtr wPortAddr, out uint pdwPortVal, byte
bSize);
[DllImport("winio.dll")]
public static extern bool SetPortVal(IntPtr wPortAddr, IntPtr dwPortVal, byte
bSize);
/*
//以下是WinIO與并口無關(guān)的函數(shù)
[DllImport("winio.dll")]
public static extern byte MapPhysToLin(byte pbPhysAddr, uint dwPhysSize,
IntPtr PhysicalMemoryHandle);
[DllImport("winio.dll")]
public static extern bool UnmapPhysicalMemory(IntPtr
PhysicalMemoryHandle, byte pbLinAddr);
[DllImport("winio.dll")]
public static extern bool GetPhysLong(IntPtr pbPhysAddr, byte
pdwPhysVal);
[DllImport("winio.dll")]
public static extern bool SetPhysLong(IntPtr pbPhysAddr, byte
dwPhysVal);
[DllImport("user32.dll")]
public static extern int MapVirtualKey(uint Ucode, uint uMapType);
*/
//屬性字段
private bool enable = false;//WinIO不可用
private bool error = false;//讀寫出錯字段
public WinIO()
{//構(gòu)造函數(shù)(自動運行)
try
{
enable = InitializeWinIo();//加載WinIO
}
catch (System.Exception error)
{//WinIO加載失敗異常處理
MessageBox.Show(error.Message, "系統(tǒng)提示", MessageBoxButtons.OK,
MessageBoxIcon.Error);
}
}
~WinIO()
{//析構(gòu)函數(shù)(自動運行)
if (enable)
{//成功加載WinIO
ShutdownWinIo();//卸載WinIO
}
}
public bool Enable
{//Enable只讀屬性
get
{
return enable;
}
}
public bool Error
{//Error只讀屬性
get
{
return error;
}
}
public byte this[uint index]//byte讀寫端口
{//數(shù)組索引:
get
{//例如 x = WioIOPort[0x378]; 等效:x = WioIOPort[0x378, sizeof(byte)];
uint val;//WinIo要求dword
error = GetPortVal((IntPtr)index, out val, sizeof(byte));
return (byte)val;
}
set
{//例如 WioIOPort[0x378] = 0xff; 等效:WioIOPort[0x378, sizeof(byte)] = 0xff;
error = SetPortVal((IntPtr)index, (IntPtr)value, sizeof(byte));
}
}
public uint this[uint index, byte size]//可用byte,word,dword讀寫端口
{//數(shù)組索引,size=1/2/4=sizeof(byte/UInt16/UInt32)
get
{//例如 x = WioIOPort[0x378, sizeof(UInt16)];
uint val;//WinIo要求dword
error = GetPortVal((IntPtr)index, out val, size);
return val;
}
set
{//例如 WioIOPort[0x378, sizeof(UInt32)] = 0x12345678;
error = SetPortVal((IntPtr)index, (IntPtr)value, size);
}
}
}
#endregion
}
歡迎光臨 電子工程網(wǎng) (http://m.qingdxww.cn/)
Powered by Discuz! X3.4
主站蜘蛛池模板:
欧美婷婷
|
lesbabes性欧美
|
99热久久久无码国产精品性麻豆
|
又湿又紧又大又爽a
|
草莓国产视频免费观看
|
快播dvd吧
|
亚洲欧洲久久
|
日本一在线中文字幕天堂
|
人人揉揉香蕉
|
色综合亚洲天天综合网站
|
2020美女视频黄频大全视频
|
寂寞护士中文字幕 mp4
|
伊在香蕉国产在线视频
|
色片免费观看
|
一级做a爰片久久毛片免费
|
亚洲欧美专区精品久久
|
超碰在线97av视频免费
|
天天爽夜夜爽
|
上色天天综合网
|
亚洲成人在线网站
|
一日本道加勒比高清一二三
|
国产精品无码亚洲精品
|
石原莉奈rbd806中文字幕
|
亚洲精品中文字幕区
|
全部免费毛片免费播放
|
四虎影视院
|
综合图色
|
蜜臀AV中文字幕熟女人妻
|
中文中幕无码亚洲视频
|
殴美在线
|
一级做a爱片久久蜜桃
|
综合图区亚洲白拍在线
|
日本亚洲中文字幕无码区
|
亚洲高清视频一区
|
色综合欧美色综合七久久
|
天天色综合图片
|
99精品在线免费
|
少妇两个奶头喷出奶水了怎么办
|
久久久中日AB精品综合
|
欧美一区二区三区成人看不卡
|
午夜大片在线观看
|