- ZwCreateFile problem
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(...
- ZwCreateFile does not Succeed at all?
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...
- z-sorted quadtrees.
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...
- Z-ordering of an SDI application with modeless CDialog
Hello, I have some modeless CDialogs in my application. My main window is a SDI application (CFormView in a CFrame) My problem is that my CDialog that are not modeless are always on top of my main window, I tried to create them with NULL as parent or CWnd::GetDesktopWindow() but it does not seem...
- Z-Ordering
I have an SDI app that creates a thread on startup to display a graphic when the app starts. Upon exiting (and after having the parent CWnd set, ie. the CWnd* from AfxGetMainWnd()), I noticed that the actual app wasn't being brought to the front. So I tried BringWindowToTop() to no avail. Fi...
- Z-order, getting dialog on top.
Hi,I am working on a telecoms application which needs an on-screen keypad.I have made the keypad a non modal dialog which is shown when the user clicks into a combo box. When the user clicks on a key on the keypad the number is shown in the combo box ( I use keybd_event() to send the character to th...