Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygenbootok.c
Go to the documentation of this file.
00001 /* 00002 * PROJECT: ReactOS Kernel 00003 * LICENSE: GPL - See COPYING in the top level directory 00004 * FILE: base/system/bootok/bootok.c 00005 * PURPOSE: Boot Acceptance Application 00006 * PROGRAMMERS: Eric Kohl 00007 */ 00008 00009 /* INCLUDES *****************************************************************/ 00010 00011 #include <stdio.h> 00012 #include <tchar.h> 00013 #define WIN32_NO_STATUS 00014 #include <windows.h> 00015 00016 /* FUNCTIONS ****************************************************************/ 00017 00018 int 00019 _tmain(int argc, TCHAR *argv[]) 00020 { 00021 UNREFERENCED_PARAMETER(argc); 00022 UNREFERENCED_PARAMETER(argv); 00023 00024 if (!NotifyBootConfigStatus(TRUE)) 00025 { 00026 _tprintf(_T("NotifyBootConfigStatus failed! (Error: %lu)\n"), 00027 GetLastError()); 00028 } 00029 00030 return 0; 00031 } Generated on Sun May 27 2012 04:18:46 for ReactOS by
1.7.6.1
|