mirror of
https://github.com/reactos/reactos.git
synced 2024-11-10 16:48:16 +00:00
c424146e2c
svn path=/branches/cmake-bringup/; revision=48236
31 lines
757 B
C
31 lines
757 B
C
/*
|
|
* 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 <stdio.h>
|
|
#include <tchar.h>
|
|
#define WIN32_NO_STATUS
|
|
#include <windows.h>
|
|
|
|
/* 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;
|
|
}
|