Click here to Skip to main content
6,822,613 members and growing! (23,401 online)
Email Password   helpLost your password?
General Reading » Hardware & System » General     Advanced License: The Code Project Open License (CPOL)

.NET - Diving into System Programming - Part 3

By Vladimir Afanasyev

Device configuration using C# (Part 3). Device resources - IRQ, DMA, etc.
C#.NET1.0, .NET1.1, Win2K, WinXP, Visual-Studio, Dev
Posted:10 Mar 2004
Views:93,181
Bookmarked:47 times
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
23 votes for this article.
Popularity: 5.87 Rating: 4.31 out of 5
1 vote, 4.3%
1
1 vote, 4.3%
2
1 vote, 4.3%
3
4 votes, 17.4%
4
16 votes, 69.6%
5

Introduction

In this last part, you will see a Windows Forms application. This application can enumerate device classes, enumerate devices from device classes and show information about device resources. You can download source code for Borland C# Builder and Visual Studio C#.

Device resources

Every device can use some hardware resources for its work. There are four standard types of resources:

  • Memory Resource
  • I/O Port Resource
  • DMA Resource
  • Interrupt Resource

The type of resources used depends on the device. For example, serial port uses I/O Port Resource and Interrupt Resource. Display (Video adapter), as a rule, uses I/O Port Resource, Interrupt Resource and Memory Resource. Device Manager can show information about resources for every device from configuration.

So how to get information about resources.

  • Get class Guid using device class name (SetupDiClassGuidsFromNameA function)
  • Get device info set for device class (SetupDiGetClassDevsA function)
  • Get device info data for every device (SetupDiGetClassDevsA function, second parameter for this function is sequential device index in the device class, so call this function in circle with device index = 0, 1, etc.).
  • Get information about current configuration (CM_Get_First_Log_Conf function)
  • Get resource descriptor from current configuration (CM_Get_Next_Res_Des function, do this and follow steps for every resource till they exist)
  • Get information about size of resource data (CM_Get_Res_Des_Data_Size function)
  • Get resource data (CM_Get_Res_Des_Data function)
  • Marshal resource data in suitable structures (class Marshal, methods PtrToStructure; structure IntPtr, method ToInt32 and vice versa to IntPtr)

You can find details in the source code for the application that you see on the next picture:

Configuration and Device Manager

Configuration Manager includes functions from cfgmgr32.dll and Device Management functions include most functions from setupapi.dll. Using these functions, you can recreate system Device Manager (if you really need it) and a lot other things. You can use it for Windows 98/Me/NT4/2000/XP with unmanaged code as well as managed. You can't use this way for early Windows versions. In Windows 95, Configuration Manager is not a DLL but a VXD driver. And I don't know about using it for Windows Server 2003.

What about WMI

WMI is really a very useful and suitable thing. It was developed for such tasks that I examine in these articles also. But WMI is native beginning from Windows 2000. If you want to use WMI for Windows 98/NT4, you need to install WMI Core. Here there is a problem, at least I had a problem. WMI Core is localized but there is no WMI Core for Russian Windows98, for example. Beside this, WMI is not magus, WMI also uses Win32 API to access device configuration.

Registry, Registry and Registry again

Really, Windows Registry is a Central Windows database for all system information. So even if we use cfgmgr32.dll or/and setupapi.dll, anyway in most cases we work with Registry data. It means if you know where to find configuration data in Registry and how to collect and marshal them, you can access data via Win32 Registry API. Of course, you can find even computer name using this API directly but I suppose that GetComputerName Win32 API function is more suitable.

Summary

As you see, some ways exist to get information about device configuration. I examined only one of these. And it is the end of my story about "child language" C#, P/Invoke and device configuration.

References

Information about Configuration and Device Managers are on Microsoft Library site.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Vladimir Afanasyev


Member
I am C++ Builder developer.
I am interesting in WMI, Shell, some deep
COM interface. Beside these I am Brainbench
Win32 API Master.
Now I very like Microsoft .NET and C#. I made some firsts OPOS drivers for Ukrainian fiscal printers.
Occupation: Web Developer
Location: Ukraine Ukraine

Other popular Hardware & System articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 25 of 51 (Total in Forum: 51) (Refresh)FirstPrevNext
Questiondefault device Pinmemberesovan13:06 26 Sep '09  
QuestionOPOS LineDisplay problem Pinmemberrobercik71323:30 26 Jan '09  
AnswerRe: OPOS LineDisplay problem PinmemberVladimir Afanasyev2:38 30 Jan '09  
QuestionOPOS drivers for fiscal printers PinmemberFabio Campos9:55 21 Nov '08  
AnswerRe: OPOS drivers for fiscal printers PinmemberVladimir Afanasyev11:54 23 Nov '08  
GeneralPort Number Pinmemberserkan197718:57 17 Nov '08  
QuestionTrying to write OPOS Line Display Service Object PinmemberEsko23:23 28 May '08  
GeneralDevice disable just on run time ... PinmemberH.R1:48 14 Sep '07  
Question[Help!] OPOS Service Object Pinmemberwallence16:41 11 Jul '07  
AnswerRe: [Help!] OPOS Service Object PinmemberVladimir Afanasyev0:03 4 Oct '07  
GeneralRe: [Help!] OPOS Service Object Pinmemberwallence16:36 16 Oct '07  
GeneralRe: [Help!] OPOS Service Object PinmemberVladimir Afanasyev23:45 16 Oct '07  
GeneralOPOS Service object source code Pinmemberkarsin2:04 20 Apr '07  
Questionhow to get more device details? Pinmemberpepepaco7:17 17 Feb '07  
AnswerRe: how to get more device details? PinmemberVladimir Afanasyev4:59 23 Feb '07  
GeneralDisable/Re-enable hardware Pinmembergee@factorymaster5:57 21 Apr '06  
GeneralEnumeration PinmemberDizzzzy10:02 26 Feb '06  
GeneralHow to Write Service Object for POS Devices Pinmemberkurella19:36 22 Feb '06  
GeneralRe: How to Write Service Object for POS Devices PinmemberVladimir Afanasyev21:55 22 Feb '06  
GeneralRe: How to Write Service Object for POS Devices Pinmemberkurella22:44 22 Feb '06  
GeneralRe: How to Write Service Object for POS Devices PinmemberVladimir Afanasyev23:47 27 Feb '06  
GeneralRe: How to Write Service Object for POS Devices Pinmemberkurella0:00 28 Feb '06  
QuestionDevelop Driver for Network Interface PinmemberRedaemon9:41 11 Jan '06  
AnswerRe: Develop Driver for Network Interface PinmemberVladimir Afanasyev22:15 11 Jan '06  
GeneralDrivers Pinmemberjonnyboy999914:07 1 Sep '05  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads.

PermaLink | Privacy | Terms of Use
Last Updated: 10 Mar 2004
Editor: Smitha Vijayan
Copyright 2004 by Vladimir Afanasyev
Everything else Copyright © CodeProject, 1999-2010
Web18 | Advertise on the Code Project