Difference between revisions of "Advapi32.dll"

From ReactOS Wiki
Jump to: navigation, search
m
(Development notes: Remove section.)
 
(21 intermediate revisions by 4 users not shown)
Line 1: Line 1:
http://en.wikipedia.org/wiki/Windows_API#Overview
+
{{stub}}
  
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/advapi32/?view=log
+
Advapi32.dll is an advanced Windows 32 base API DLL file that provides access to functions beyond the kernel. This API services library supports security and [[wikipedia:Windows registry|registry]] calls. Also included are things like shutdown/restart the system (or abort), start/stop/create a [[wikipedia:Windows service|Windows service]], and manage user accounts.
  
[[ChangeLog-0.1.3]]
+
== Relationship with Wine ==
* Implementation of audit routines ([[Eric Kohl]])
+
Advapi32.dll is partially synced with [[WINE|Wine]].
[[ChangeLog-0.1.0]]
 
* Advapi32: Progress with opening and closing handles to SCM ([[Robert Dickenson]])
 
  
[[ChangeLog-0.2.1]]
+
However, information that has been documented by Wine is of interest to us:
  
* Implemented LsaFreeMemory ([[Steven Edwards]])
+
[https://source.winehq.org/WineAPI/advapi32.html Wine advapi32.dll exports]
* Implement RegRestoreKeyW() ([[Eric Kohl]])
 
  
[[ChangeLog-0.2.2]]
+
== Code History ==
*Implemented LsaFreeMemory ([[Steven Edwards]])
+
{{Code history|dll/win32/advapi32}}
*LogonUserW(): Fix key name ([[Eric Kohl]])
+
 
*Implement ImpersonateLoggedOnUser() ([[Eric Kohl]])
+
== External links ==
*Fix bugs in RegQueryValueExA() and RegQueryValueExW() that caused crashes or returned bogus information ([[Eric Kohl]])
+
* [[wikipedia:Windows API#Overview]]
 +
 
 +
[[Category:Development]]
 +
[[Category:DLL]]

Latest revision as of 20:19, 17 March 2019

The page Advapi32.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.


Advapi32.dll is an advanced Windows 32 base API DLL file that provides access to functions beyond the kernel. This API services library supports security and registry calls. Also included are things like shutdown/restart the system (or abort), start/stop/create a Windows service, and manage user accounts.

Relationship with Wine

Advapi32.dll is partially synced with Wine.

However, information that has been documented by Wine is of interest to us:

Wine advapi32.dll exports

Code History

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

External links