|
DriverProc
Processes driver messages for the installable driver. DriverProc is a driver-supplied function.
LONG DriverProc(DWORD dwDriverId, HDRVR hdrvr, UINT msg,
LONG lParam1, LONG lParam2);
Parameters
dwDriverId
Identifier of the installable driver.
hdrvr
Handle of the installable driver instance. Each instance of the installable
driver has a unique handle.
msg
Driver message value. It can be a custom value or one of these standard values:
DRV_CLOSE
| Notifies the driver that it should decrement its usage count and unload the
driver if the count is zero.
| DRV_CONFIGURE
| Notifies the driver that it should display a configuration dialog box. This
message is sent only if the driver returns a nonzero value when processing the DRV_QUERYCONFIGURE message.
| DRV_DISABLE
| Notifies the driver that its allocated memory is about to be freed.
| DRV_ENABLE
| Notifies the driver that it has been loaded or reloaded or that Windows has
been enabled.
| DRV_FREE
| Notifies the driver that it will be discarded.
| DRV_INSTALL
| Notifies the driver that it has been successfully installed.
| DRV_LOAD
| Notifies the driver that it has been successfully loaded.
| DRV_OPEN
| Notifies the driver that it is about to be opened.
| DRV_POWER
| Notifies the driver that the device's power source is about to be turned on or
off.
| DRV_QUERYCONFIGURE
| Directs the driver to specify whether it supports the DRV_CONFIGURE message.
| DRV_REMOVE
| Notifies the driver that it is about to be removed from the system.
|
lParam1 and lParam2
32-bit message-specific value.
Return Value
Returns nonzero if successful or zero otherwise.
Remarks
When msg is DRV_OPEN, lParam1 is the string following the driver filename from the SYSTEM.INI file and lParam2 is the value given as the lParam parameter in a call to the OpenDriver function.
When msg is DRV_CLOSE, lParam1 and lParam2 are the same values as the lParam1 and lParam2 parameters in a call to the CloseDriver function.
| 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
|