开发者

Are there any open source C Library (not c++) for Windows Driver Development? [closed]

Closed. This question doe开发者_如何学Pythons not meet Stack Overflow guidelines. It is not currently accepting answers.

We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.

Closed 7 years ago.

Improve this question

Are there any open source C Library (not c++) for Windows Driver Development ?

I am developing a network device driver that need some functionality such as RegEx, string manipulation, Object Oriented by C and XML and so on...

thanks.


Not aware of any real regular expression libraries. However, depending on what you need FsRtlIsNameInExpression may be of some interest. There's plenty of string manipulation functions in the Safe String Libraries, they just have names that are different to the libc equiavalents.


Please don't do this in a driver. It would be frowned upon in the Windows driver communities.

What keeps you from communicating with a UM module of your product to do such more error-prone operations? Keep the operations, especially risky ones, to a minimum within a driver. When your UM module crashes, it may take down a process, when your driver crashes it will inevitably take down the system.

No question: it's possible. But not everything that is possible should also be done ;)

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜