I want to use the ZAdapterComboBox in my code, so i add ComboBox to my dialog, and set owndraw fixed, then add adapter icon to the resource, its ID is set to...
Use debugger to debug. Examine ZAdapterListBox::GetIconID call. Examine the GetItemDataPtr structure that is returned from GetItemDataPtr. Make sure that the...
Can anyone recommend any really good books on the topic of Memory Management on Windows 2003 server platforms? We need to do some stuff related to this area...
Get "Windows Internals" by Russinovich and Solomon this covers memory management well. Now, the thing is you are limited in what you can do, the API's in the...
Hi again! After a week, I return to 802.11 scanning!!! I had understood things in the wrong order, I/O controls with NDISPROT go like that? NDISPROT -> FILTER1...
... things in ... and ... properly? You basically need to disable the filter driver (I think by filter driver you mean an NDIS IM driver working in 1:1 mode)...
We are looking for an experienced Windows kernel developer to help with driver work for ZoneAlarm (#1 personal firewall) and Integrity, the corporate version....
James Grant
jgrant@...
Mar 16, 2007 7:11 pm
7814
I need to install a TDI provider (NetTrans) class driver and it would be a lot easier if I could integrate the install into the INF file for the NIC as well?...
I am looking for something on windows that will allow me to achieve the same thing as mlockall on Linux (lock all current pages in RAM and also lock future...
Virtual Alloc does not lock pages in memory period. There is no such function in Windows. Don Burn (MVP, Windows DDK) Windows 2k/XP/2k3 Filesystem and Driver...
I took the following from MSDN: VirtualLock - Locks the specified region of the process's virtual address space into physical memory, ensuring that subsequent...
... First off, this is usually a bad idea; let the OS decide for you. That being said... I've always heard that VirtualLock() only guarantees that a page will ...
MSDN is wrong, VirtualLock locks memory into the process addess space, but the process can be swapped from menory. Don Burn (MVP, Windows DDK) Windows...
... space, but ... Maybe it's stupid question but... ...what's the meaning of "locked memory" in this case i.e. memory locked in the process address space? GV ...
The idea was that if your process is running, it will never have to wait for a page fault on a particular memory access. If your process is paged in at all,...
And unfortunately, it has been confusing people for years. I saw questions 13 years ago about "why does my driver have to lock the pages for DMA, since they...
... to ... process ... Ouch... from what you and Don said I think I'll to take the bible (windows internals) and study a bit. And i hate when I have doubts ...
Actually, it is worse, if all the threads of a process are blocked Windows can feel free to unload your whole process from memory, including VirtualLock. Now...
... Windows ... Ok... I need some coffee... And I need to understand every single detail now. "if all the threads of a process are blocked Windows can feel...
Basically, VirtualLock locks pages into the address space of the process, but does not guarantee the process is locked into memory. It ensures that a page...
Actually, NO. They are explicit that this is not for corrections to the documentation. I've already pointed out to them that Wikipedia has had a number of...
I got a very different impression at the MVP summit last week - they were encouraging additions and clarifications from the community, as long as they...
... I know, I know :-P... obvious *for me*. Back to the topic, earlier this morning I run a couple quick experiments with VirtualLock() and the working set...
Hello, I wanted to know if I could get from somewhere the source code of PCAGIZMO, the NDIS 6 lightweight filter. I would appreciate so much, because I am...
... [PCAUSA] Sorry, but the PCAGizmo sources have not been released. It is simply an internal PCAUSA research tool. ... [PCAUSA] Microsoft has invented a...
I am really new with networking programming and i'm trying to understand NDIS. I'm having some basic problems and I hope someone can help me. My first problem...
Get the WDK it will contain sample drivers, and the tools and include files you need to develop drivers. Do not use the Visual Studio C compiler, the WDK...
NDIS is a framework developed several years ago by Microsoft to develop network drivers that can be binary portable among different Windows versions. By...