/*1* Copyright 2016 Austin English2*3* This library is free software; you can redistribute it and/or4* modify it under the terms of the GNU Lesser General Public5* License as published by the Free Software Foundation; either6* version 2.1 of the License, or (at your option) any later version.7*8* This library is distributed in the hope that it will be useful,9* but WITHOUT ANY WARRANTY; without even the implied warranty of10* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU11* Lesser General Public License for more details.12*13* You should have received a copy of the GNU Lesser General Public14* License along with this library; if not, write to the Free Software15* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA16*/1718#include <stdarg.h>1920#include <windef.h>21#include <winbase.h>22#include <winuser.h>23#include <commctrl.h>24#include <shlwapi.h>25#include <shellapi.h>2627#include "wine/debug.h"28#include "resource.h"2930WINE_DEFAULT_DEBUG_CHANNEL(msinfo);3132int __cdecl wmain(int argc, WCHAR *argv[])33{34int i;35WCHAR system_info[64];3637InitCommonControls();3839WINE_FIXME("stub:");40for (i = 0; i < argc; i++)41WINE_FIXME(" %s", wine_dbgstr_w(argv[i]));42WINE_FIXME("\n");4344LoadStringW(GetModuleHandleW(NULL), STRING_SYSTEM_INFO, system_info, ARRAY_SIZE(system_info));45ShellAboutW(NULL, system_info, NULL, NULL);4647return 0;48}495051