Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
250c7c08
Commit
250c7c08
authored
Jul 12, 2004
by
James Hawkins
Committed by
Alexandre Julliard
Jul 12, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added some more API docs.
parent
d8b20cf5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
168 additions
and
45 deletions
+168
-45
advapi.c
dlls/advapi32/advapi.c
+24
-1
crypt.c
dlls/advapi32/crypt.c
+0
-0
eventlog.c
dlls/advapi32/eventlog.c
+144
-44
No files found.
dlls/advapi32/advapi.c
View file @
250c7c08
...
...
@@ -155,6 +155,27 @@ BOOL WINAPI AbortSystemShutdownW( LPWSTR lpMachineName )
/******************************************************************************
* InitiateSystemShutdownExA [ADVAPI32.@]
*
* Initiate a shutdown or optionally restart the computer.
*
* PARAMS
* lpMachineName [I] Network name of machine to shutdown.
* lpMessage [I] Message displayed in shutdown dialog box.
* dwTimeout [I] Number of seconds dialog is displayed before shutdown.
* bForceAppsClosed [I] If TRUE, apps close without saving, else dialog is
* displayed requesting user to close apps.
* bRebootAfterShutdown [I] If TRUE, system reboots after restart, else the
* system flushes all caches to disk and clears
* the screen
* dwReason [I] Reason for shutting down. Must be a system shutdown reason
* code.
*
* RETURNS
* Success: TRUE
* Failure: FALSE
*
* NOTES
* if lpMachineName is NULL, the local computer is shutdown.
*/
BOOL
WINAPI
InitiateSystemShutdownExA
(
LPSTR
lpMachineName
,
LPSTR
lpMessage
,
DWORD
dwTimeout
,
BOOL
bForceAppsClosed
,
BOOL
bRebootAfterShutdown
,
...
...
@@ -167,7 +188,9 @@ BOOL WINAPI InitiateSystemShutdownExA( LPSTR lpMachineName, LPSTR lpMessage,
}
/******************************************************************************
* InitiateSystemShutdownExA [ADVAPI32.@]
* InitiateSystemShutdownExW [ADVAPI32.@]
*
* see InitiateSystemShutdownExA
*/
BOOL
WINAPI
InitiateSystemShutdownExW
(
LPWSTR
lpMachineName
,
LPWSTR
lpMessage
,
DWORD
dwTimeout
,
BOOL
bForceAppsClosed
,
BOOL
bRebootAfterShutdown
,
...
...
dlls/advapi32/crypt.c
View file @
250c7c08
This diff is collapsed.
Click to expand it.
dlls/advapi32/eventlog.c
View file @
250c7c08
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment