Difference between revisions of "Kernel32.dll"

From ReactOS Wiki
Jump to: navigation, search
m
m (Link to our article on memory management.)
 
(26 intermediate revisions by 4 users not shown)
Line 1: Line 1:
[[ChangeLog-0.0.12]]
+
{{Stub}}
  
kernel32 now compiles (only as a static library)
+
KERNEL32.DLL exposes to applications most of the Win32 base APIs, such as [[Memory Manager|memory management]], input/output (I/O) operations, process and thread creation, and synchronization functions. Many of these are implemented within KERNEL32.DLL by calling corresponding functions in the [[Wikipedia:native API|native API]], exposed by [[Ntdll.dll|NTDLL.DLL]].
  
[[ChangeLog-0.1.3]]  
+
== Relationship with Wine ==
 +
Kernel32.dll is partially synced with [[WINE|Wine]].
  
== Kernel32.dll ==
+
== Code History ==
 +
{{Code history|dll/win32/kernel32}}
  
* FLS support for threads ([[KJK::Hyperion]])
+
== External links ==
* Control Dispatcher ([[James Tabor]], [[KJK::Hyperion]], [[Hartmut Birr]])
+
*[[wikipedia:Microsoft Windows library files#KERNEL32.DLL]]
 +
*[[wikipedia:Windows API#Overview]]
  
[[ChangeLog-0.1.5]]
+
[[Category:Development]]
== Kernel32.dll ==
+
[[Category:DLL]]
 
 
* Changes to DllMain for cygwin support ([[Art Yerkes]])
 
* Working edit control ([[Mark Tempel]])
 

Latest revision as of 20:33, 17 March 2019

The page Kernel32.dll is a short article on something that should have a lot more information written on it.
If you know anything else about it, you are STRONGLY encouraged to add the information in. If you are unsure of proper formatting or style, add it to the talk page or this page itself as you think best and others will help.


KERNEL32.DLL exposes to applications most of the Win32 base APIs, such as memory management, input/output (I/O) operations, process and thread creation, and synchronization functions. Many of these are implemented within KERNEL32.DLL by calling corresponding functions in the native API, exposed by NTDLL.DLL.

Relationship with Wine

Kernel32.dll is partially synced with Wine.

Code History

Commit history (Source code can be found in: /reactos/dll/win32/kernel32)

External links