mirror of
https://github.com/reactos/reactos.git
synced 2024-11-07 15:10:53 +00:00
20 lines
486 B
C
20 lines
486 B
C
|
/*
|
||
|
* PROJECT: ReactOS Update Service
|
||
|
* LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
|
||
|
* PURPOSE: Windows Update Stand-Alone installer.
|
||
|
* Stub is required for some application at the installation phase.
|
||
|
* COPYRIGHT: Copyright 2018 Denis Malikov (filedem@gmail.com)
|
||
|
*/
|
||
|
|
||
|
#include "wusa.h"
|
||
|
|
||
|
int
|
||
|
WINAPI
|
||
|
wWinMain(HINSTANCE hCurInst,
|
||
|
HINSTANCE hPrevInst,
|
||
|
LPWSTR lpsCmdLine,
|
||
|
int nCmdShow)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|