ReactOS 0.4.16-dev-959-g2ec3a19
wuauserv.c File Reference
#include "wuauserv.h"
Include dependency graph for wuauserv.c:

Go to the source code of this file.

Functions

static VOID UpdateServiceStatus (DWORD dwState)
 
static DWORD WINAPI ServiceControlHandler (DWORD dwControl, DWORD dwEventType, LPVOID lpEventData, LPVOID lpContext)
 
VOID WINAPI ServiceMain (DWORD argc, LPTSTR *argv)
 
BOOL WINAPI DllMain (HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
 

Variables

static WCHAR ServiceName [] = L"wuauserv"
 
static SERVICE_STATUS_HANDLE ServiceStatusHandle
 
static SERVICE_STATUS ServiceStatus
 
static HANDLE hStopEvent = NULL
 

Function Documentation

◆ DllMain()

BOOL WINAPI DllMain ( HINSTANCE  hinstDLL,
DWORD  fdwReason,
LPVOID  lpvReserved 
)

Definition at line 122 of file wuauserv.c.

125{
126 switch (fdwReason)
127 {
130 break;
131
133 break;
134 }
135
136 return TRUE;
137}
static DWORD const fdwReason
#define TRUE
Definition: types.h:120
#define DLL_PROCESS_ATTACH
Definition: compat.h:131
#define DLL_PROCESS_DETACH
Definition: compat.h:130
BOOL WINAPI DisableThreadLibraryCalls(IN HMODULE hLibModule)
Definition: loader.c:85

◆ ServiceControlHandler()

static DWORD WINAPI ServiceControlHandler ( DWORD  dwControl,
DWORD  dwEventType,
LPVOID  lpEventData,
LPVOID  lpContext 
)
static

Definition at line 48 of file wuauserv.c.

52{
53 switch (dwControl)
54 {
56 DPRINT1("WU ServiceControlHandler(SERVICE_CONTROL_STOP) received\n");
59 return ERROR_SUCCESS;
60
62 DPRINT1("WU ServiceControlHandler(SERVICE_CONTROL_PAUSE) received\n");
64 return ERROR_SUCCESS;
65
67 DPRINT1("WU ServiceControlHandler(SERVICE_CONTROL_CONTINUE) received\n");
69 return ERROR_SUCCESS;
70
72 DPRINT1("WU ServiceControlHandler(SERVICE_CONTROL_INTERROGATE) received\n");
74 return ERROR_SUCCESS;
75
77 DPRINT1("WU ServiceControlHandler(SERVICE_CONTROL_SHUTDOWN) received\n");
80 return ERROR_SUCCESS;
81
82 default :
83 DPRINT1("WU ServiceControlHandler(Control %lu) received\n", dwControl);
85 }
86}
#define DPRINT1
Definition: precomp.h:8
#define ERROR_SUCCESS
Definition: deptool.c:10
#define ERROR_CALL_NOT_IMPLEMENTED
Definition: compat.h:102
BOOL WINAPI SetServiceStatus(SERVICE_STATUS_HANDLE hServiceStatus, LPSERVICE_STATUS lpServiceStatus)
Definition: sctrl.c:997
BOOL WINAPI DECLSPEC_HOTPATCH SetEvent(IN HANDLE hEvent)
Definition: synch.c:733
#define SERVICE_STOP_PENDING
Definition: winsvc.h:23
#define SERVICE_CONTROL_SHUTDOWN
Definition: winsvc.h:40
#define SERVICE_PAUSED
Definition: winsvc.h:27
#define SERVICE_RUNNING
Definition: winsvc.h:24
#define SERVICE_CONTROL_CONTINUE
Definition: winsvc.h:38
#define SERVICE_CONTROL_STOP
Definition: winsvc.h:36
#define SERVICE_CONTROL_PAUSE
Definition: winsvc.h:37
#define SERVICE_CONTROL_INTERROGATE
Definition: winsvc.h:39
static VOID UpdateServiceStatus(DWORD dwState)
Definition: wuauserv.c:23
static SERVICE_STATUS_HANDLE ServiceStatusHandle
Definition: wuauserv.c:15
static HANDLE hStopEvent
Definition: wuauserv.c:18
static SERVICE_STATUS ServiceStatus
Definition: wuauserv.c:16

Referenced by ServiceMain().

◆ ServiceMain()

VOID WINAPI ServiceMain ( DWORD  argc,
LPTSTR argv 
)

Definition at line 89 of file wuauserv.c.

90{
93
94 DPRINT("WU ServiceMain() called\n");
95
98 NULL);
100 {
101 DPRINT1("RegisterServiceCtrlHandlerExW() failed (Error %lu)\n", GetLastError());
102 return;
103 }
104
106 if (hStopEvent == NULL)
107 {
108 DPRINT1("CreateEvent() failed (Error %lu)\n", GetLastError());
109 goto done;
110 }
111
113
116
117done:
119}
static int argc
Definition: ServiceArgs.c:12
#define NULL
Definition: types.h:112
#define FALSE
Definition: types.h:117
#define CloseHandle
Definition: compat.h:739
#define INFINITE
Definition: serial.h:102
#define argv
Definition: mplay32.c:18
#define UNREFERENCED_PARAMETER(P)
Definition: ntbasedef.h:325
SERVICE_STATUS_HANDLE WINAPI RegisterServiceCtrlHandlerExW(LPCWSTR lpServiceName, LPHANDLER_FUNCTION_EX lpHandlerProc, LPVOID lpContext)
Definition: sctrl.c:812
#define DPRINT
Definition: sndvol32.h:73
DWORD WINAPI WaitForSingleObject(IN HANDLE hHandle, IN DWORD dwMilliseconds)
Definition: synch.c:82
HANDLE WINAPI DECLSPEC_HOTPATCH CreateEventW(IN LPSECURITY_ATTRIBUTES lpEventAttributes OPTIONAL, IN BOOL bManualReset, IN BOOL bInitialState, IN LPCWSTR lpName OPTIONAL)
Definition: synch.c:651
DWORD WINAPI GetLastError(void)
Definition: except.c:1042
#define SERVICE_STOPPED
Definition: winsvc.h:21
static WCHAR ServiceName[]
Definition: wuauserv.c:13
static DWORD WINAPI ServiceControlHandler(DWORD dwControl, DWORD dwEventType, LPVOID lpEventData, LPVOID lpContext)
Definition: wuauserv.c:48

◆ UpdateServiceStatus()

static VOID UpdateServiceStatus ( DWORD  dwState)
static

Definition at line 23 of file wuauserv.c.

24{
31
32 if (dwState == SERVICE_START_PENDING ||
33 dwState == SERVICE_STOP_PENDING ||
34 dwState == SERVICE_PAUSE_PENDING ||
35 dwState == SERVICE_CONTINUE_PENDING)
37 else
39
40 if (dwState == SERVICE_RUNNING)
42
44 DPRINT1("WU UpdateServiceStatus(%lu) called\n", dwState);
45}
DWORD dwServiceType
Definition: winsvc.h:99
DWORD dwWin32ExitCode
Definition: winsvc.h:102
DWORD dwControlsAccepted
Definition: winsvc.h:101
DWORD dwWaitHint
Definition: winsvc.h:105
DWORD dwCurrentState
Definition: winsvc.h:100
DWORD dwCheckPoint
Definition: winsvc.h:104
DWORD dwServiceSpecificExitCode
Definition: winsvc.h:103
#define SERVICE_ACCEPT_STOP
Definition: winsvc.h:28
#define SERVICE_START_PENDING
Definition: winsvc.h:22
#define SERVICE_ACCEPT_SHUTDOWN
Definition: winsvc.h:30
#define SERVICE_PAUSE_PENDING
Definition: winsvc.h:26
#define SERVICE_CONTINUE_PENDING
Definition: winsvc.h:25
#define SERVICE_WIN32_OWN_PROCESS
Definition: cmtypes.h:962

Referenced by ServiceControlHandler(), and ServiceMain().

Variable Documentation

◆ hStopEvent

HANDLE hStopEvent = NULL
static

Definition at line 18 of file wuauserv.c.

Referenced by ServiceControlHandler(), and ServiceMain().

◆ ServiceName

WCHAR ServiceName[] = L"wuauserv"
static

Definition at line 13 of file wuauserv.c.

Referenced by ServiceMain().

◆ ServiceStatus

SERVICE_STATUS ServiceStatus
static

Definition at line 16 of file wuauserv.c.

Referenced by ServiceControlHandler(), and UpdateServiceStatus().

◆ ServiceStatusHandle

SERVICE_STATUS_HANDLE ServiceStatusHandle
static

Definition at line 15 of file wuauserv.c.

Referenced by ServiceControlHandler(), ServiceMain(), and UpdateServiceStatus().