do u really think this is your most important thing?? if your driver is not a WDM one, then you will have to write a second version only for 98/me.
IceMatrix
Posts
-
Auto Device Driver Installation.. -
Rant/Advice Requestreally nice spamming here ;D
-
Full screen problemi could use api hooks for CreateWindow and CreateWindowEx! also for ChangeDisplaySettings and ChangeDisplaySettingsEx if the game changes the screen resolution. i don't know if it also works with directx games, try it to be sure about this problem! IceMatrix
-
double to stringfloat f; double d; f = 3.1415926535897932384626433832795f; d = 3.1415926535897932384626433832795; printf( "%.32f\n", f ); printf( "%.32lf\n", d ); Output: 3.14159274101257320000000000000000 3.14159265358979310000000000000000 double has to be more precise, but the function doesnt show it!
-
double to stringbut how does the windows calc do it? IceMatrix
-
Audioas far as i know only with linking a dll etc... IceMatrix
-
double to stringhi, i'm looking for a routine to convert double to string with at least a precision as the windows calculator does(32 digits after the comma)! does someone know such a function?? thx 4 help, IceMatrix
-
Virtual File Systemyou should probably use a disk simulator driver... so the os creates it own file system on it and you can handle it like every other drive.
-
Cryptographic Servicecan't you just say what you downloaded??
-
"Open with..." dialog boxit's shell32.dll!OpenAs_RunDLL, but i don't know the parameters... i hope this will help!
-
How to determine if an .EXE is running?i have quite a good solution! use the CreateToolhelp32Snapshot( TH32CS_SNAPPROCESS, NULL ) to get a complete list of the running processes on the local machine... have a look at msdn under CreateToolhelp32Snapshot, you will find a useful code snippet there.
-
network programmingthe windows ddk is the device driver kit! you have to order it at http://www.microsoft.com/ddk/ (its free i think). i don't know the packet32 driver, but you will have to control it via DeviceIoControl, CreateFile, ReadFile, WriteFile like most other drivers.
-
Enumerating exported DLL functionsfind some articles about the PE file format(it's the file format of exe and dll ... files). i found a very nice tutorial at http://spiff.tripnet.se/~iczelion/tutorials.html have a look at these tutorials, then u just have to code :) have fun