- Sync with trunk up to r46941.
[reactos.git] / base / system / bootok / bootok.c
1 /*
2 * PROJECT: ReactOS Kernel
3 * LICENSE: GPL - See COPYING in the top level directory
4 * FILE: base/system/bootok/bootok.c
5 * PURPOSE: Boot Acceptance Application
6 * PROGRAMMERS: Eric Kohl
7 */
8
9 /* INCLUDES *****************************************************************/
10
11 #include <stdio.h>
12 #include <tchar.h>
13 #define WIN32_NO_STATUS
14 #include <windows.h>
15
16 /* FUNCTIONS ****************************************************************/
17
18 int
19 _tmain(int argc, TCHAR *argv[])
20 {
21 UNREFERENCED_PARAMETER(argc);
22 UNREFERENCED_PARAMETER(argv);
23
24 if (!NotifyBootConfigStatus(TRUE))
25 {
26 _tprintf(_T("NotifyBootConfigStatus failed! (Error: %lu)\n"),
27 GetLastError());
28 }
29
30 return 0;
31 }