Search the web
Sign In
New User? Sign Up
discussion-pcausa · PCAUSA Discussion List
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 7807 - 7836 of 8586   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
7807
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...
zheng cheng
christie8208
Offline Send Email
Mar 14, 2007
3:01 am
7808
Use debugger to debug. Examine ZAdapterListBox::GetIconID call. Examine the GetItemDataPtr structure that is returned from GetItemDataPtr. Make sure that the...
Thomas F. Divine
pcatom
Offline Send Email
Mar 14, 2007
3:23 am
7809
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...
sanjayc.rm
Offline Send Email
Mar 15, 2007
3:24 am
7810
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...
Don Burn
don_burn
Offline Send Email
Mar 15, 2007
12:23 pm
7811
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...
lazslo82
Offline Send Email
Mar 15, 2007
5:10 pm
7812
... 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)...
gianluca_varenni
gianluca_var...
Offline Send Email
Mar 15, 2007
5:34 pm
7813
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@...
Send Email
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?...
Patrick Klos
pklos
Offline Send Email
Mar 19, 2007
3:06 pm
7815
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...
shivakalyani
Offline Send Email
Mar 19, 2007
11:04 pm
7816
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...
Don Burn
don_burn
Offline Send Email
Mar 19, 2007
11:23 pm
7817
I took the following from MSDN: VirtualLock - Locks the specified region of the process's virtual address space into physical memory, ensuring that subsequent...
shivakalyani
Offline Send Email
Mar 20, 2007
12:40 am
7818
... 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 ...
Steve Dispensa
stevedpositive
Offline Send Email
Mar 20, 2007
1:54 am
7819
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...
Don Burn
don_burn
Offline Send Email
Mar 20, 2007
11:23 am
7820
... 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 ...
gianluca_varenni
gianluca_var...
Offline Send Email
Mar 20, 2007
3:37 pm
7821
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,...
Steve Dispensa
stevedpositive
Offline Send Email
Mar 20, 2007
3:39 pm
7822
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...
Don Burn
don_burn
Offline Send Email
Mar 20, 2007
3:45 pm
7823
... 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 ...
gianluca_varenni
gianluca_var...
Offline Send Email
Mar 20, 2007
4:29 pm
7824
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...
Don Burn
don_burn
Offline Send Email
Mar 20, 2007
4:34 pm
7825
... 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...
gianluca_varenni
gianluca_var...
Offline Send Email
Mar 20, 2007
4:55 pm
7826
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...
Don Burn
don_burn
Offline Send Email
Mar 20, 2007
5:00 pm
7827
Sounds like a good topic for the MSDN Wiki. Thomas...
Thomas F. Divine
pcatom
Offline Send Email
Mar 20, 2007
5:12 pm
7828
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...
Don Burn
don_burn
Offline Send Email
Mar 20, 2007
5:36 pm
7829
... Haha, never say that. :-) -sd...
Steve Dispensa
stevedpositive
Offline Send Email
Mar 20, 2007
6:49 pm
7830
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...
Steve Dispensa
stevedpositive
Offline Send Email
Mar 20, 2007
6:50 pm
7831
... 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...
gianluca_varenni
gianluca_var...
Offline Send Email
Mar 20, 2007
7:09 pm
7832
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...
lazslo82
Offline Send Email
Mar 21, 2007
4:54 pm
7833
... [PCAUSA] Sorry, but the PCAGizmo sources have not been released. It is simply an internal PCAUSA research tool. ... [PCAUSA] Microsoft has invented a...
Thomas F. Divine
pcatom
Offline Send Email
Mar 21, 2007
5:41 pm
7834
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...
Gloria García
nohayquienen...
Offline Send Email
Mar 21, 2007
9:22 pm
7835
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...
Don Burn
don_burn
Offline Send Email
Mar 21, 2007
10:02 pm
7836
NDIS is a framework developed several years ago by Microsoft to develop network drivers that can be binary portable among different Windows versions. By...
Gianluca Varenni
gianluca_var...
Offline Send Email
Mar 21, 2007
10:18 pm
Messages 7807 - 7836 of 8586   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help