xref: /reactos/base/system/bootok/bootok.c (revision 40462c92)
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 <tchar.h>
12 #define WIN32_NO_STATUS
13 #include <windef.h>
14 #include <winbase.h>
15 #include <winsvc.h>
16 
17 /* FUNCTIONS ****************************************************************/
18 
19 int
20 _tmain(int argc, TCHAR *argv[])
21 {
22     UNREFERENCED_PARAMETER(argc);
23     UNREFERENCED_PARAMETER(argv);
24 
25     if (!NotifyBootConfigStatus(TRUE))
26     {
27         _tprintf(_T("NotifyBootConfigStatus failed! (Error: %lu)\n"),
28                  GetLastError());
29     }
30 
31     return 0;
32 }
33