-
This book explains how to write device drivers for the newest members of the MicrosoftWindows family of operating systems using the Windows Driver Model (WDM). In this Introduction, I ll explain who should be reading this book, the organization of the book, and how to use the book most effectively. You ll also find a note on errors and a section on other Resources you can use to learn about driver programming. Looking ahead, Chapter 1 explains how the two main branches of the Windows family operate internally, what a WDM device driver is, and how it relates to the rest of Windows.
標(biāo)簽:
MicrosoftWindows
the
explains
drivers
上傳時(shí)間:
2014-01-04
上傳用戶:dongqiangqiang
-
Cromfs is a compressed read-only filesystem for Linux. Cromfs is best at archiving gigabytes of big files that have a lot of redundancy. It aims primarily at achieving a strong compression, even at the cost of memory and CPU time Resources. It uses the LZMA compression algorithm from 7-zip and block merging.
標(biāo)簽:
Cromfs
compressed
filesystem
archiving
上傳時(shí)間:
2013-12-15
上傳用戶:王楚楚
-
1. Installation Uninstallation
2. Getting Started
3. Managing Projects
4. Adding Files to the Project
5. Managing Resources
6. Custom Designer Plugins
7. What s New
標(biāo)簽:
Uninstallation
Installation
Managing
Projects
上傳時(shí)間:
2017-05-12
上傳用戶:sk5201314
-
Blocking CoThe aim of this toolbox is to compute blocking probabilities in WDM networks. This work was based on [1], [2], [3], [4] and user is referred to those papers for deeper study.
Because WDM networks are circuit switched loss networks blocking may occur because of lack of Resources.Computation in WDM Networks Toolbox
標(biāo)簽:
probabilities
Blocking
blocking
networks
上傳時(shí)間:
2014-01-14
上傳用戶:iswlkje
-
Because WDM networks are circuit switched loss networks blocking may occur because of lack of Resources. Also in circuit switched networks many paths use the same links. This toolbox answers the question how different paths with different loads influence on each other and what is the blocking on each of the defined path. Toolbox is capable of computing blocking for three different WDM network types: with no wavelength conversion, with full wavelength conversion and with limited range wavelength conversion. It is worth noting that case for full conversion can be usefull for any circuit switched network without additional constraints (i.e. wavelength continuity constraint in WDM), for example telephone network.
Toolbox contains also scripts for defining network structures (random networks, user defined networks) and traffic matrixes. Three graph algorithms for shortest path computation are also in this toolbox (they are used for traffic matrix creation).
標(biāo)簽:
networks
blocking
switched
Because
上傳時(shí)間:
2017-07-28
上傳用戶:zhangzhenyu
-
nesc language introduction. nesC is an extension to C [2] designed to embody the structuring concepts and execution model of
TinyOS [1]. TinyOS is an event-driven operating system designed for sensor network nodes that
have very limited Resources (e.g., 8K bytes of program memory, 512 bytes of RAM). TinyOS has
been reimplemented in nesC. This manual describes v1.1 of nesC, changes from v1.0 are summarised
in Section 3.
標(biāo)簽:
introduction
structuring
extension
language
上傳時(shí)間:
2017-09-04
上傳用戶:66666
-
An Overview of Smart Card Security.
The smart card, an intelligent token, is a credit card sized plastic card embedded with an integrated circuit chip. It provides not only memory capacity, but computational capability as well. The self-containment of smart card makes it resistant to attack as it does not need to depend upon potentially vulnerable external Resources. Because of this characteristic, smart cards are often used in different applications which require strong security protection and authentication.
標(biāo)簽:
card
intelligent
Overview
Security
上傳時(shí)間:
2017-09-25
上傳用戶:busterman
-
PixelFusion.dsp
This file (the project file) contains information at the project level and
is used to build a single project or subproject. Other users can share the
project (.dsp) file, but they should export the makefiles locally.
PixelFusion.h
This is the main header file for the application. It includes other
project specific headers (including Resource.h) and declares the
CPixelFusionApp application class.
PixelFusion.cpp
This is the main application source file that contains the application
class CPixelFusionApp.
PixelFusion.rc
This is a listing of all of the Microsoft Windows Resources that the
program uses. It includes the icons, bitmaps, and cursors that are stored
in the RES subdirectory. This file can be directly edited in Microsoft
Visual C++.
PixelFusion.clw
This file contains information used by ClassWizard to edit existing
classes or add new classes. ClassWizard also uses this file to store
information needed to create and edit message maps and dialog data
maps and to create prototype member functions.
標(biāo)簽:
his
brovey
上傳時(shí)間:
2015-03-16
上傳用戶:313777423
-
樓術(shù)描述項(xiàng):
(1).該項(xiàng)目中"我的電腦"是作者自定義的root節(jié)點(diǎn),沒有設(shè)定其路徑,所以BeforeExpand事件中會從它開始依次遍歷,但"我的電腦"會提示"沒有指定路徑".故需要if(e.Tag.ToString() != "我的電腦")判斷.同時(shí)"我的文檔"需要再次獲取其路徑,依次實(shí)現(xiàn)Add子節(jié)點(diǎn);
(2).同時(shí)在"我的文檔"和盤符中需要添加tNode.Nodes.Add("")加載空節(jié)點(diǎn)形成+號,如果沒有該+號,BeforeExpend事件不會被調(diào)用,子目錄無法獲取加載,在BeforeExpand事件調(diào)用TreeViewItems.Add加載其子結(jié)點(diǎn)需要e.Nodes.Clear();清除該結(jié)點(diǎn)的子目錄再加載.
(3).提供兩篇類似文章供大家學(xué)習(xí),經(jīng)過對比可以發(fā)現(xiàn):第一篇僅從驅(qū)動(dòng)器(C盤)開始加載,所以BeforeExpend簡單展開子目錄即可,不需要判斷"我的電腦"和"我的文檔".第二篇含"桌面",因此需要判斷路徑:"C# TreeView磁盤文件,AfterSelect顯示加號-駱駝祥子" 和"Treeview樹狀顯示文件夾" .同時(shí)補(bǔ)充一篇很優(yōu)秀的文章供大家學(xué)習(xí)"WinForm應(yīng)用:ListView做圖像瀏覽"
(4).補(bǔ)充TreeView(樹視圖)事件:更詳細(xì)見"c# 樹狀視圖(TreeView類)".
事件 描述
AfterCheck 在選中節(jié)點(diǎn)復(fù)選框后引發(fā)
AfterCollapse 在折疊一個(gè)節(jié)點(diǎn)后引發(fā)
AfterExpand 在擴(kuò)展一個(gè)節(jié)點(diǎn)后引發(fā)
AfterSelect 在選中一個(gè)節(jié)點(diǎn)后引發(fā)
BeforeCheck 在選中節(jié)點(diǎn)復(fù)選框之前引發(fā)
BeforeCollapse 在折疊一個(gè)節(jié)點(diǎn)之前引發(fā)
BeforeExpand 在擴(kuò)展一個(gè)節(jié)點(diǎn)之前引發(fā)
BeforeSelect 在選中一個(gè)節(jié)點(diǎn)之前引發(fā)
(5).補(bǔ)充兩個(gè)關(guān)于論壇討論"c#怎樣動(dòng)態(tài)讀取資源文件里的圖片"和"在C#中怎么調(diào)用Resources文件中的圖片"
(6).在《C#典型模塊與項(xiàng)目實(shí)戰(zhàn)大全》(清華大學(xué)出版社-丁士鋒)書中談到,出于對程序響應(yīng)性能考慮,它先加載盤符結(jié)點(diǎn),沒有使用遞歸一次性加載所有文件到樹狀列表中,代碼通過AfterSelect事件和FileSystemWatcher控件,監(jiān)聽加載.并使用線程池Task更新加載TreeView,希望大家去學(xué)習(xí).
總結(jié)
該篇通過TreeView加載了磁盤目錄路徑,并通過ImageList加載圖標(biāo).那么怎樣實(shí)現(xiàn)閱讀文件夾下文件,獲取其圖標(biāo)、文件大小、擴(kuò)展名等信息,并雙擊打開文件呢?下一篇將接著講述.最后希望該文章對大家有所幫助,文章中很多鏈接都可以供覺得有用的同學(xué)學(xué)習(xí),感謝上面提到的文章及書籍作者.同時(shí)如果文章中有錯(cuò)誤或不足之處請?jiān)?有問題或建議者亦可提出.希望尊重作者勞動(dòng)果實(shí)勿噴.
標(biāo)簽:
目錄樹
自定義
上傳時(shí)間:
2016-08-15
上傳用戶:baobao9437
-
Delphi三層數(shù)據(jù)庫連接池 (1)
Connection Pool for Delphi release notes
-------------------------------------------------------------------------------
This document contains:
- Short description of the product
- Other text files
- TRIAL version limitations
- Delphi - versions supported
- Installation of Connection Pool for Delphi
- Installation of Connection Pool for Delphi help file
- Ordering information
- Support and Web Resources
- Thanks To
標(biāo)簽:
Delphi
數(shù)據(jù)庫
連接
上傳時(shí)間:
2019-12-12
上傳用戶:me2008