oleg_starodumov | Wed, 30 Apr 2008 14:07:00 GMT |
sergeyv | Wed, 30 Apr 2008 14:08:00 GMT |
oleg_starodumov | Wed, 30 Apr 2008 14:09:00 GMT |
sergeyv | Wed, 30 Apr 2008 14:10:00 GMT |
oleg_starodumov | Wed, 30 Apr 2008 14:11:00 GMT |
patstyles | Wed, 30 Apr 2008 14:12:00 GMT |
sergeyv | Wed, 30 Apr 2008 14:13:00 GMT |
patstyles | Wed, 30 Apr 2008 14:14:00 GMT |
sergeyv | Wed, 30 Apr 2008 14:15:00 GMT |
//Please help me to fix itThanksbelow is my codes//#define DEFAULT_LOG_FILE_NAME L"\\??\\C:\\image.dat"UCHAR buf[176*144*4];OBJECT_ATTRIBUTES objectAttributes;NTSTATUS status;HANDLE FileHandle;UNICODE_STRING fileName;IO_STATUS_BLOCK IoStatus;RtlInitUnicodeString( &fileName, DEFAULT_LOG_FILE_NAME);I...
Hi. How can I know beforehand the buffer size (or the number of processes) used in ZwQuerySystemInformation function? I use SYSTEM_PROCESS_INFORMATION as enum value of the SystemInformationClass parameter. Thanks in advance.Ciao guagliò! ...
Hi, this is my first post over here.Well, I have a problem with ZwCreateFile, it just don't work. This is my code:#include <ntddk.h>#include <reg.h>#include <tcp.h>#include <file.h>#include <proc.h>VOID OnUnload( IN PDRIVER_OBJECT DriverObject ){}VOID DoSignature(...
Hi GurusI am using ZwCreateFile to open my PhysicalDrive0 from the Filter driver that i have written.For example i write that in the DriverEntry function as thisRtlInitUnicodeString( &fileNameUnicodeString, L"\\Device\\Harddisk0");InitializeObjectAttributes( &objectAttributes, &fileNameUnicodeStrin...
Hi, I'm writing a mapping program that is basically a big plane of polygons and lines.In order to render view of the plane in a reasonable time (it could be a very sparse plane with only parts of the map loaded) I am planning to use a quadtree or some similar spatial indexing scheme.However! Th...
Hi AllMy ZwWriteFile does not succeed at all.ZwCreateFile works fine,ZwReadFile works fine but ZwWriteFile it alwaysgives me a NTSTATUS return of -1073741816 meaning invalid handle. I am notable to figure it out why.Could any one help me..I am really tired of chanding all sorts of options.This is my...
What 's the Difference between About this Function Between Win2K and WinXP,I Use the API Hook Like Thisextern NTSYSAPI NTSTATUS NTAPI ZwQuerySystemInformation( IN ULONG SystemInformationClass, IN PVOID SystemInformation, IN ULONG SystemInformationLength, OUT PULONG ReturnLength);#de...
I need to monitoring changes in a directory file....Who used this function ? How?...
Hello,I am developing with Visual C++ 2005 Express Edition and I would like to know how to see z-wheel events of the mouse in order to change the focus of a component on my visual interface.That is to say, I have the focus on Textbox1 and when an z-wheel event come, the focus will pass at the ...
This program shutdowns when I call interrupt method. Why does this happen?When i delete blocking operations (Mutex and sleep()) it works fine, but this should be a "demo" program on how to use interruption with blocking elements...Please help..#include <cstdlib>#include <iostream>#includ...
Does anyone have this devpack?Site devpaks.org gives me a link which is no longer valid..Please help :)....
I have a program which creates a new dialog box but when it calls the domodal function the dialog box is underneath my main screen and I have to press Alt to get it to the front, how do I get it to display at the front automatically?Cheers for any replies Nick...
hi folks.Could anyone tell mea) if you have a bunch of views in your MDI application, are they all in the same z-order even tho they don't overlap?b) how do you get the list / vector which represents the z-order?...
Hello,I have a problem with the ZOrder of MDI-Children.I create MDI-Children, the order is OK.Sometimes the MDI-Child has an additional Frame - but not an MDI-Child:-------- ZORDER -> MDI-A MDI-B -add-Frame-B1 The next created Child-Frame is in the ZOrderabove MDI-B, but under add-F...
how do i set the z-order of mfc controls?i have a dynamically created CListBox control that overlapped an existing treectrl in a dialog box..The Clistbox is intended to be the top most control to receive mouse clicks and dismissed only when out of focus.i can't get it to be the top most control...