reactos.git
24 years agoI forgot to update the code that uses SYSTEM_TIME_INFORMATION.
Emanuele Aliberti [Wed, 26 Apr 2000 06:56:12 +0000 (06:56 +0000)]
I forgot to update the code that uses SYSTEM_TIME_INFORMATION.

svn path=/trunk/; revision=1138

24 years agoPartially implemented (handlers only)
Emanuele Aliberti [Tue, 25 Apr 2000 23:22:57 +0000 (23:22 +0000)]
Partially implemented (handlers only)
NTOSKRNL.NtQuerySystemInformation() and
NTOSKRNL.NtSetSystemInformation().

---

Partially implemented (kernel32/process/proc.c)

KERNEL32.GetPriorityClass(),
KERNEL32.SetPriorityClass() and
NTDLL.CsrSetPriorityClass() (stub only).

Renamed (in include/csrss/csrss.h) priority
class macros:

#define CSR_PRIORITY_CLASS_NORMAL (0x10)
#define CSR_PRIORITY_CLASS_IDLE (0x20)
#define CSR_PRIORITY_CLASS_HIGH (0x40)
#define CSR_PRIORITY_CLASS_REALTIME (0x80)

---

Implemented (kernel32/misc/error.c)

#include <kernel32/error.h>

DWORD
STDCALL
SetLastErrorByStatus (
NTSTATUS Status
);

to replace SetLastError(RtlNtStatusToDosError(Status))
in KERNEL32, and fixed

KERNEL32.SetLastError()
KERNEL32.GetLastError()

to use the field in NT_TEB (LastError is per thread
not per process).

---

Implemented (lib/kernel32/sysinfo.c) GetSystemInfo()
(to be completed).

---

Fixed rosapps/sysutils/makefile to use ROS import
libraries.

---

Added QSI to the system utilities set. The target is
writing a tool that can be used to query as much system
information as possible from user mode (to be finished
and tested only under nt4sp4/x86; it was NOT tested
under ROS: it crashes immediately and needs
NtQuerySystemInformation implemented!).

svn path=/trunk/; revision=1137

24 years agoNtDeviceIoControllFile() was not specifying IoFileObjectType as the object type when...
Phillip Susi [Mon, 24 Apr 2000 04:17:55 +0000 (04:17 +0000)]
NtDeviceIoControllFile() was not specifying IoFileObjectType as the object type when referencing the file handle

svn path=/trunk/; revision=1136

24 years agoDo not set std handles when AllocConsole() fails, I swear I fixed this before...
Phillip Susi [Mon, 24 Apr 2000 01:52:24 +0000 (01:52 +0000)]
Do not set std handles when AllocConsole() fails, I swear I fixed this before...

svn path=/trunk/; revision=1135

24 years agoDisabled debug prints
Phillip Susi [Sun, 23 Apr 2000 18:01:21 +0000 (18:01 +0000)]
Disabled debug prints

svn path=/trunk/; revision=1134

24 years agoDisabled debug prints
Phillip Susi [Sun, 23 Apr 2000 17:55:21 +0000 (17:55 +0000)]
Disabled debug prints

svn path=/trunk/; revision=1133

24 years agoDumped anoying debug print
Phillip Susi [Sun, 23 Apr 2000 17:52:44 +0000 (17:52 +0000)]
Dumped anoying debug print

svn path=/trunk/; revision=1132

24 years agoAdded a event handle to reply struct
Phillip Susi [Sun, 23 Apr 2000 17:51:35 +0000 (17:51 +0000)]
Added a event handle to reply struct

svn path=/trunk/; revision=1131

24 years agoAdded declaration for InterlockedCompareExchange
Phillip Susi [Sun, 23 Apr 2000 17:50:47 +0000 (17:50 +0000)]
Added declaration for InterlockedCompareExchange

svn path=/trunk/; revision=1130

24 years agoSwitched to CREATE_NEW_CONSOLE from DETACHED_PROCESS
Phillip Susi [Sun, 23 Apr 2000 17:49:07 +0000 (17:49 +0000)]
Switched to CREATE_NEW_CONSOLE from DETACHED_PROCESS

svn path=/trunk/; revision=1129

24 years agoWhole new win32 console support, with multiple virtual consoles and scrollback support
Phillip Susi [Sun, 23 Apr 2000 17:44:53 +0000 (17:44 +0000)]
Whole new win32 console support, with multiple virtual consoles and scrollback support

svn path=/trunk/; revision=1128

24 years agoWas reporting geometry backwards, and needed to add a raw output mode
Phillip Susi [Sun, 23 Apr 2000 17:42:57 +0000 (17:42 +0000)]
Was reporting geometry backwards, and needed to add a raw output mode

svn path=/trunk/; revision=1127

24 years agoPatched up console code a bit
Phillip Susi [Sun, 23 Apr 2000 17:41:40 +0000 (17:41 +0000)]
Patched up console code a bit

svn path=/trunk/; revision=1126

24 years agoCreateProcess was eating the flags, had to pass them on
Phillip Susi [Sun, 23 Apr 2000 17:40:52 +0000 (17:40 +0000)]
CreateProcess was eating the flags, had to pass them on

svn path=/trunk/; revision=1125

24 years agoFixed up Critical Section code
Phillip Susi [Thu, 20 Apr 2000 05:29:27 +0000 (05:29 +0000)]
Fixed up Critical Section code

svn path=/trunk/; revision=1124

24 years agoReplaced a -- with an InterlockedDecrement
Phillip Susi [Mon, 17 Apr 2000 03:09:04 +0000 (03:09 +0000)]
Replaced a -- with an InterlockedDecrement

svn path=/trunk/; revision=1123

24 years agoAdded some rtl functions
Eric Kohl [Sat, 15 Apr 2000 23:14:32 +0000 (23:14 +0000)]
Added some rtl functions

svn path=/trunk/; revision=1122

24 years agoImplemented debugger functions
Eric Kohl [Fri, 14 Apr 2000 01:50:38 +0000 (01:50 +0000)]
Implemented debugger functions

svn path=/trunk/; revision=1121

24 years agoapplied fixes to make a user32.dll
Boudewijn Dekker [Thu, 13 Apr 2000 20:59:11 +0000 (20:59 +0000)]
applied fixes to make a user32.dll
code is based on wine.

svn path=/trunk/; revision=1120

24 years ago.
Boudewijn Dekker [Wed, 12 Apr 2000 22:41:51 +0000 (22:41 +0000)]
.

svn path=/trunk/; revision=1119

24 years agoAdded kernel_parameters to boot_param
Eric Kohl [Wed, 12 Apr 2000 17:34:27 +0000 (17:34 +0000)]
Added kernel_parameters to boot_param

svn path=/trunk/; revision=1118

24 years agoFixed EngFreeMem def
Jason Filby [Tue, 11 Apr 2000 20:56:11 +0000 (20:56 +0000)]
Fixed EngFreeMem def

svn path=/trunk/; revision=1117

24 years agoImplemented DrvCopybits
Jason Filby [Mon, 10 Apr 2000 20:17:34 +0000 (20:17 +0000)]
Implemented DrvCopybits
Minor fixes

svn path=/trunk/; revision=1116

24 years agoAdded system and isa bus handler
Eric Kohl [Sun, 9 Apr 2000 15:58:13 +0000 (15:58 +0000)]
Added system and isa bus handler

svn path=/trunk/; revision=1115

24 years agoFixed compiler warnings
Eric Kohl [Sat, 8 Apr 2000 23:35:27 +0000 (23:35 +0000)]
Fixed compiler warnings

svn path=/trunk/; revision=1114

24 years agoMoved KeStallExecutionProcessor() into HAL.
Eric Kohl [Sat, 8 Apr 2000 19:10:50 +0000 (19:10 +0000)]
Moved KeStallExecutionProcessor() into HAL.
Added some security functions.

svn path=/trunk/; revision=1113

24 years agoFixed bug in COPY command
Eric Kohl [Sat, 8 Apr 2000 14:50:47 +0000 (14:50 +0000)]
Fixed bug in COPY command

svn path=/trunk/; revision=1112

24 years agoCorreted path to be system32 instead of system
Phillip Susi [Fri, 7 Apr 2000 22:59:38 +0000 (22:59 +0000)]
Correted path to be system32 instead of system

svn path=/trunk/; revision=1111

24 years agoRemoved LoadLibraryW from kernel32.edf, as it seems to not have an implementation...
Phillip Susi [Fri, 7 Apr 2000 21:45:32 +0000 (21:45 +0000)]
Removed LoadLibraryW from kernel32.edf, as it seems to not have an implementation and so would not compile.  Wonder where the implementation whent?

svn path=/trunk/; revision=1110

24 years agoAdded more time functions
Eric Kohl [Fri, 7 Apr 2000 12:45:22 +0000 (12:45 +0000)]
Added more time functions

svn path=/trunk/; revision=1109

24 years agoBegan seperation of machine-dependant/independant sections of memory
David Welch [Fri, 7 Apr 2000 02:24:03 +0000 (02:24 +0000)]
Began seperation of machine-dependant/independant sections of memory
manager
Did some more work on the dce/rpc implementation
Corrected loadros so the kernel can no longer write to read-only areas
of memory
Corrected alignment and size of initial stack

svn path=/trunk/; revision=1108

24 years agoMoved debug functions
Eric Kohl [Thu, 6 Apr 2000 17:23:52 +0000 (17:23 +0000)]
Moved debug functions

svn path=/trunk/; revision=1107

24 years agoAdded some more security functions
Eric Kohl [Thu, 6 Apr 2000 02:29:57 +0000 (02:29 +0000)]
Added some more security functions

svn path=/trunk/; revision=1106

24 years agoAdded hal functions
Eric Kohl [Wed, 5 Apr 2000 15:52:45 +0000 (15:52 +0000)]
Added hal functions
Fixed se functions

svn path=/trunk/; revision=1105

24 years agoAdded ace, acl and sid functions
Eric Kohl [Wed, 5 Apr 2000 01:41:01 +0000 (01:41 +0000)]
Added ace, acl and sid functions

svn path=/trunk/; revision=1104

24 years agoCorrect LPC implementation
David Welch [Mon, 3 Apr 2000 21:54:42 +0000 (21:54 +0000)]
Correct LPC implementation
Removed thread leak in csrss
Added notification of port closing

svn path=/trunk/; revision=1103

24 years agoImplemented DrvPaint and DrvBitBlt
Jason Filby [Mon, 3 Apr 2000 19:55:33 +0000 (19:55 +0000)]
Implemented DrvPaint and DrvBitBlt
Added tests for new routines
Minor fixes

svn path=/trunk/; revision=1102

24 years agoMm subsystem exports table complete.
Emanuele Aliberti [Sun, 2 Apr 2000 13:32:43 +0000 (13:32 +0000)]
Mm subsystem exports table complete.

svn path=/trunk/; revision=1101

24 years agoAll video related files now loaded by win32k
Jason Filby [Sun, 2 Apr 2000 13:09:50 +0000 (13:09 +0000)]
All video related files now loaded by win32k

svn path=/trunk/; revision=1100

24 years agoUse NonPagedPool in EngAllocMem for now
Jason Filby [Sun, 2 Apr 2000 12:44:57 +0000 (12:44 +0000)]
Use NonPagedPool in EngAllocMem for now

svn path=/trunk/; revision=1099

24 years agoVersion info for Named Pipe fs driver.
Emanuele Aliberti [Sat, 1 Apr 2000 14:20:21 +0000 (14:20 +0000)]
Version info for Named Pipe fs driver.

svn path=/trunk/; revision=1098

24 years agoVersion info for Minix driver.
Emanuele Aliberti [Sat, 1 Apr 2000 14:19:48 +0000 (14:19 +0000)]
Version info for Minix driver.

svn path=/trunk/; revision=1097

24 years agoVersion info for ext2fs driver.
Emanuele Aliberti [Sat, 1 Apr 2000 14:19:07 +0000 (14:19 +0000)]
Version info for ext2fs driver.

svn path=/trunk/; revision=1096

24 years agoImplemented basic VGA routines
Jason Filby [Sat, 1 Apr 2000 12:31:29 +0000 (12:31 +0000)]
Implemented basic VGA routines
Implemented Eng\DrvLineTo

svn path=/trunk/; revision=1095

24 years agoCorrected mutex implementation
David Welch [Wed, 29 Mar 2000 13:11:55 +0000 (13:11 +0000)]
Corrected mutex implementation
Added proper locking to the memory managment

svn path=/trunk/; revision=1093

24 years agoFixed typeo preventing compilation
Phillip Susi [Wed, 29 Mar 2000 03:15:11 +0000 (03:15 +0000)]
Fixed typeo preventing compilation

svn path=/trunk/; revision=1092

24 years agoCorrected the handle generation algorithm in the kernel and csrss
David Welch [Sun, 26 Mar 2000 22:00:10 +0000 (22:00 +0000)]
Corrected the handle generation algorithm in the kernel and csrss
Did some work on services.exe
Did some work on the service functions in advapi32
Made some progress in implementing npfs
Implemented a basic grammar for midl

svn path=/trunk/; revision=1091

24 years agoIo subsystem clean-up. Every exported symbols is not STDCALL.
Emanuele Aliberti [Sun, 26 Mar 2000 19:38:32 +0000 (19:38 +0000)]
Io subsystem clean-up. Every exported symbols is not STDCALL.
NtCreateFile renamed IoCreateFile and Nt{Create,Open}File call IoCreateFile.
Io data items added (to be fixed).

svn path=/trunk/; revision=1090

24 years agoConnected standard input/output to the console
David Welch [Fri, 24 Mar 2000 22:25:39 +0000 (22:25 +0000)]
Connected standard input/output to the console
Removed from superfluous assertions
Changed the ide read and write commands to work with bochs
Corrected bug in the csrss server

svn path=/trunk/; revision=1089

24 years agoUpdated the minix driver
David Welch [Wed, 22 Mar 2000 18:36:00 +0000 (18:36 +0000)]
Updated the minix driver
Moved console handling into csrss
Gave each process a name for debugging purposes

svn path=/trunk/; revision=1088

24 years agoModified kernel initialization sequence
Eric Kohl [Mon, 20 Mar 2000 18:00:55 +0000 (18:00 +0000)]
Modified kernel initialization sequence
Enabled bus handlers

svn path=/trunk/; revision=1087

24 years agoAdded some more status codes
Eric Kohl [Sun, 19 Mar 2000 15:57:39 +0000 (15:57 +0000)]
Added some more status codes

svn path=/trunk/; revision=1086

24 years agoImplemented bus handler functions (not working yet)
Eric Kohl [Sun, 19 Mar 2000 13:35:38 +0000 (13:35 +0000)]
Implemented bus handler functions (not working yet)
Several STDCALL fixes

svn path=/trunk/; revision=1085

24 years agoImplemented bus handler functions (not working yet)
Eric Kohl [Sun, 19 Mar 2000 13:33:39 +0000 (13:33 +0000)]
Implemented bus handler functions (not working yet)

svn path=/trunk/; revision=1084

24 years agoImplemented VideoPortDebugPrint()
Eric Kohl [Sun, 19 Mar 2000 13:31:37 +0000 (13:31 +0000)]
Implemented VideoPortDebugPrint()

svn path=/trunk/; revision=1083

24 years agoAdded SYSTEM_TIME_INFORMATION
Eric Kohl [Sun, 19 Mar 2000 13:30:30 +0000 (13:30 +0000)]
Added SYSTEM_TIME_INFORMATION

svn path=/trunk/; revision=1082

24 years agoSome clean-up in ntoskrnl/mm. MmAllocateSection prototype moved in
Emanuele Aliberti [Sun, 19 Mar 2000 09:14:52 +0000 (09:14 +0000)]
Some clean-up in ntoskrnl/mm. MmAllocateSection prototype moved in
internal/mm.h.

svn path=/trunk/; revision=1081

24 years agoFixed path bugs
Eric Kohl [Sat, 18 Mar 2000 19:55:53 +0000 (19:55 +0000)]
Fixed path bugs

svn path=/trunk/; revision=1080

24 years agoAdded forgotten .h files
Jason Filby [Sat, 18 Mar 2000 18:39:44 +0000 (18:39 +0000)]
Added forgotten .h files

svn path=/trunk/; revision=1079

24 years agoqsort in NTOSKRNL and some STDCALL declarations.
Emanuele Aliberti [Sat, 18 Mar 2000 15:12:19 +0000 (15:12 +0000)]
qsort in NTOSKRNL and some STDCALL declarations.

svn path=/trunk/; revision=1078

24 years agoOops...
Eric Kohl [Sat, 18 Mar 2000 14:37:43 +0000 (14:37 +0000)]
Oops...

svn path=/trunk/; revision=1077

24 years agoAdded image functions
Eric Kohl [Sat, 18 Mar 2000 14:02:01 +0000 (14:02 +0000)]
Added image functions
Include pe.h in windows.h to avoid conflicts

svn path=/trunk/; revision=1076

24 years agoAdded security descriptor functions
Eric Kohl [Sat, 18 Mar 2000 13:48:24 +0000 (13:48 +0000)]
Added security descriptor functions

svn path=/trunk/; revision=1075

24 years agoFixed compiler warnings
Eric Kohl [Sat, 18 Mar 2000 02:39:39 +0000 (02:39 +0000)]
Fixed compiler warnings

svn path=/trunk/; revision=1074

24 years agolast mod...
Jason Filby [Fri, 17 Mar 2000 22:19:44 +0000 (22:19 +0000)]
last mod...

svn path=/trunk/; revision=1073

24 years agoAdditional modifications
Jason Filby [Fri, 17 Mar 2000 22:14:31 +0000 (22:14 +0000)]
Additional modifications

svn path=/trunk/; revision=1072

24 years agoAdditional modifications
Jason Filby [Fri, 17 Mar 2000 21:56:43 +0000 (21:56 +0000)]
Additional modifications

svn path=/trunk/; revision=1071

24 years agoAdditional modifications
Jason Filby [Fri, 17 Mar 2000 21:49:32 +0000 (21:49 +0000)]
Additional modifications

svn path=/trunk/; revision=1070

24 years agoFixed compiler warning
Eric Kohl [Fri, 17 Mar 2000 21:46:41 +0000 (21:46 +0000)]
Fixed compiler warning

svn path=/trunk/; revision=1069

24 years agoAdded eng files
Jason Filby [Fri, 17 Mar 2000 21:44:02 +0000 (21:44 +0000)]
Added eng files

svn path=/trunk/; revision=1068

24 years agoMiniport driver now loaded from win32k
Jason Filby [Fri, 17 Mar 2000 21:02:59 +0000 (21:02 +0000)]
Miniport driver now loaded from win32k
Display and miniport drivers can now talk to each other
Sets the VGA video mode

svn path=/trunk/; revision=1067

24 years agoOops! Typos...
Eric Kohl [Thu, 16 Mar 2000 21:50:56 +0000 (21:50 +0000)]
Oops! Typos...

svn path=/trunk/; revision=1066

24 years agoFixed ANSI <--> Unicode conversions
Eric Kohl [Thu, 16 Mar 2000 21:50:11 +0000 (21:50 +0000)]
Fixed ANSI <--> Unicode conversions

svn path=/trunk/; revision=1065

24 years agoOops.
David Welch [Thu, 16 Mar 2000 20:50:48 +0000 (20:50 +0000)]
Oops.

svn path=/trunk/; revision=1064

24 years agoFixed a confusing error message
Eric Kohl [Thu, 16 Mar 2000 20:02:44 +0000 (20:02 +0000)]
Fixed a confusing error message

svn path=/trunk/; revision=1063

24 years agoImplemented setting the fs register to point to the TEB
David Welch [Thu, 16 Mar 2000 18:44:57 +0000 (18:44 +0000)]
Implemented setting the fs register to point to the TEB

svn path=/trunk/; revision=1062

24 years agoFixed ANSI/OEM <--> Unicode conversions
Eric Kohl [Thu, 16 Mar 2000 01:14:58 +0000 (01:14 +0000)]
Fixed ANSI/OEM <--> Unicode conversions

svn path=/trunk/; revision=1061

24 years agoFixed WIN32_FIND_DATA[A/W] structs and resulting bugs
Eric Kohl [Wed, 15 Mar 2000 23:13:29 +0000 (23:13 +0000)]
Fixed WIN32_FIND_DATA[A/W] structs and resulting bugs

svn path=/trunk/; revision=1060

24 years agoFixed ANSI/OEM <--> Unicode conversions
Eric Kohl [Wed, 15 Mar 2000 18:30:30 +0000 (18:30 +0000)]
Fixed ANSI/OEM <--> Unicode conversions

svn path=/trunk/; revision=1059

24 years agoObsolete!
Eric Kohl [Wed, 15 Mar 2000 18:29:50 +0000 (18:29 +0000)]
Obsolete!

svn path=/trunk/; revision=1058

24 years agoFixed ANSI/OEM <--> Unicode conversions
Eric Kohl [Wed, 15 Mar 2000 12:25:47 +0000 (12:25 +0000)]
Fixed ANSI/OEM <--> Unicode conversions

svn path=/trunk/; revision=1057

24 years agoFixed ANSI/OEM <--> Unicode conversions
Eric Kohl [Tue, 14 Mar 2000 23:09:23 +0000 (23:09 +0000)]
Fixed ANSI/OEM <--> Unicode conversions

svn path=/trunk/; revision=1056

24 years agoUpdated install script
David Welch [Mon, 13 Mar 2000 23:16:46 +0000 (23:16 +0000)]
Updated install script

svn path=/trunk/; revision=1055

24 years agoUnused characters in long file name buffers (directory slots) must be filled with...
Eric Kohl [Mon, 13 Mar 2000 17:58:06 +0000 (17:58 +0000)]
Unused characters in long file name buffers (directory slots) must be filled with 0xFFFF.

svn path=/trunk/; revision=1054

24 years agoFixed a bug in rtlGetFullPathName_U()
Eric Kohl [Mon, 13 Mar 2000 17:54:23 +0000 (17:54 +0000)]
Fixed a bug in rtlGetFullPathName_U()

svn path=/trunk/; revision=1053

24 years agoFixed file creation date and time
Eric Kohl [Sun, 12 Mar 2000 23:28:59 +0000 (23:28 +0000)]
Fixed file creation date and time
Implemented synchronization of all FATs (FAT16 only)
Fixed bug in directory creation

svn path=/trunk/; revision=1052

24 years agoAdd MD command
Eric Kohl [Sun, 12 Mar 2000 23:24:51 +0000 (23:24 +0000)]
Add MD command

svn path=/trunk/; revision=1051

24 years agoUpdated INTERFACE_TYPE
Eric Kohl [Sun, 12 Mar 2000 01:22:37 +0000 (01:22 +0000)]
Updated INTERFACE_TYPE

svn path=/trunk/; revision=1050

24 years agoAdded some security functions
Eric Kohl [Sun, 12 Mar 2000 01:18:18 +0000 (01:18 +0000)]
Added some security functions

svn path=/trunk/; revision=1049

24 years agoFixed lots of status values
Eric Kohl [Sun, 12 Mar 2000 01:15:09 +0000 (01:15 +0000)]
Fixed lots of status values

svn path=/trunk/; revision=1048

24 years agoNTOKRNL.FsRtl notification and cache tunnels stubs added.
Emanuele Aliberti [Sat, 11 Mar 2000 00:51:36 +0000 (00:51 +0000)]
NTOKRNL.FsRtl notification and cache tunnels stubs added.
Possibly fixed the win32k.sys import error reported by Jason.

svn path=/trunk/; revision=1047

24 years agoNTOSKRNL.FsRtl opportunistic lock stubs added.
Emanuele Aliberti [Fri, 10 Mar 2000 22:09:17 +0000 (22:09 +0000)]
NTOSKRNL.FsRtl opportunistic lock stubs added.

svn path=/trunk/; revision=1046

24 years agoFixed compiler warning
Eric Kohl [Fri, 10 Mar 2000 13:46:27 +0000 (13:46 +0000)]
Fixed compiler warning

svn path=/trunk/; revision=1045

24 years agoAdd VGA display driver
Jason Filby [Fri, 10 Mar 2000 12:45:45 +0000 (12:45 +0000)]
Add VGA display driver

svn path=/trunk/; revision=1044

24 years agoSmall fix
Jason Filby [Fri, 10 Mar 2000 12:39:53 +0000 (12:39 +0000)]
Small fix

svn path=/trunk/; revision=1043

24 years agoImplemented DRIVER_BuildDDIFunctions
Jason Filby [Thu, 9 Mar 2000 21:04:10 +0000 (21:04 +0000)]
Implemented DRIVER_BuildDDIFunctions

svn path=/trunk/; revision=1042

24 years agoAdded time related functions
Eric Kohl [Thu, 9 Mar 2000 16:01:25 +0000 (16:01 +0000)]
Added time related functions

svn path=/trunk/; revision=1041

24 years agoImplemented bitmap functions
Eric Kohl [Thu, 9 Mar 2000 00:14:10 +0000 (00:14 +0000)]
Implemented bitmap functions

svn path=/trunk/; revision=1040

24 years agowin32k.sys exports script.
Emanuele Aliberti [Wed, 8 Mar 2000 22:39:04 +0000 (22:39 +0000)]
win32k.sys exports script.

svn path=/trunk/; revision=1039

24 years agoVersion info added to Eric's edit port.
Emanuele Aliberti [Wed, 8 Mar 2000 22:38:01 +0000 (22:38 +0000)]
Version info added to Eric's edit port.

svn path=/trunk/; revision=1038