/* * PROJECT: ReactOS Kernel * LICENSE: GPL - See COPYING in the top level directory * FILE: base/system/bootok/bootok.c * PURPOSE: Boot Acceptance Application * PROGRAMMERS: Eric Kohl */ /* INCLUDES *****************************************************************/ #include #define WIN32_NO_STATUS #include #include #include /* FUNCTIONS ****************************************************************/ int _tmain(int argc, TCHAR *argv[]) { UNREFERENCED_PARAMETER(argc); UNREFERENCED_PARAMETER(argv); if (!NotifyBootConfigStatus(TRUE)) { _tprintf(_T("NotifyBootConfigStatus failed! (Error: %lu)\n"), GetLastError()); } return 0; }