1 /* 2 * PROJECT: ReactOS Update Service 3 * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+) 4 * PURPOSE: Windows Update Stand-Alone installer. 5 * Stub is required for some application at the installation phase. 6 * COPYRIGHT: Copyright 2018 Denis Malikov (filedem@gmail.com) 7 */ 8 9 #include "wusa.h" 10 11 int 12 WINAPI 13 wWinMain(HINSTANCE hCurInst, 14 HINSTANCE hPrevInst, 15 LPWSTR lpsCmdLine, 16 int nCmdShow) 17 { 18 return 0; 19 } 20