|
Device Handles
A DeviceIoControl call specifies a handle of a device driver to identify the device being
accessed. You can use the CreateFile function to get a device driver handle.
The CreateFile call must specify either the name of a device or the name of the driver
associated with a device. To specify a device name, the lpszname parameter of CreateFile specifies a string with the format
\\.\DeviceName
The types of devices that you can open and the method that you must use to
specify them in the CreateFile function depend on the Win32 platform on which your application is running.
On Windows NT, DeviceIoControl can open a handle of a specific device. For example, to open a handle to the
logical drive A:, specify "\\\\.\\a:". Alternatively, you can use the names
"\\\\.\\PhysicalDrive0", "\\\\.\\PhysicalDrive1", and so on, to open handles to
the physical drives on a system.
For Win32-based applications running on Windows 95, DeviceIoControl must specify a handle of a virtual device driver. For example, to open a
handle to the system VxD, specify "\\\\.\\vwin32".
The CreateFile call should specify the FILE_SHARE_READ and FILE_SHARE_WRITE access flags
when opening a handle to a device driver. However, when opening a communications
resource, such as a serial port, CreateFile must specify exclusive access. Other CreateFile parameters are used as follows when opening a device handle:
- The fdwCreate parameter must specify the OPEN_EXISTING flag.
- The hTemplateFile parameter must be NULL.
- The fdwAttrsAndFlags parameter can specify FILE_FLAG_OVERLAPPED to indicate that the returned
handle can be used in overlapped (asynchronous) I/O operations.
| Last news from Greatis Software |
 |
|
Nostalgia .Net |
|
.Net is powerful, but not all-powerful, so sometimes we need to use Win32 API for our .Net applications. It's simple enough with Platform Invoke if you have Win32 skill, but we do not always have time to dig the ancient documentation, declare the special types that are compatible with Win32, find the values of the Win32's constants and so on. Nostalgia .Net offers several simple-to-use classes, and components that will allow you to forget about the headache of Win32 and just use the power of Win32 in your application the same way as you use the native. Net classes. More » |
| Recommended software for developers |
 |
|
Ultimate Pack |
|
Component pack for Delphi and C++ Builder that contains runtime form designer, runtime object inspector, print suite and much more for the very special price. More » |
 |
|
Form Designer .Net |
|
Unique runtime form design solution that allows to edit any form in .Net WinForms application at runtime with full source codes for only 300 euro! More » |
 |
|
Print Suite .Net |
|
Print Suite .Net is a set of components for easy printing texts, images and grids from your WinForms applications. Full C# source codes are available More » |
 |
|
Gradient Controls .Net |
|
Gradient Controls .Net offers controls with gradient background feature. Labels, panels and so on... Full C# source codes are available More » |
 |
|
Greatis iGrid |
|
iGrid plots drawing grid right over your desktop, so you can use it everywhere, with any drawing application without any special plugins for different graphic editors. More » |
All the contacts and projectsDmitry Vasiliev (just.dmitry)
Related LinksSoftware for Visual Studio .NET developers Software for Delphi and C++ Builder developers Software for Visual Basic 6 developers Delphi Tips&Tricks MegaDetailed.NET More Online Helps Win32 Programmer's Reference Win32 Multimedia Programmer's Reference OLE Programmer's Reference Microsoft Windows Pen API Programmer's Reference Microsoft Windows Sockets 2 Reference Microsoft Windows Telephony API (TAPI) Programmer's Reference Unix Manual Pages
|