ReactOS 0.4.15-dev-6049-ge54b32b
stubs.c File Reference
#include <uefildr.h>
#include <debug.h>
Include dependency graph for stubs.c:

Go to the source code of this file.

Functions

UCHAR DriveMapGetBiosDriveNumber (PCSTR DeviceName)
 
VOID StallExecutionProcessor (ULONG Microseconds)
 
VOID NTAPI KeStallExecutionProcessor (ULONG Microseconds)
 
VOID UefiVideoGetFontsFromFirmware (PULONG RomFontPointers)
 
VOID UefiVideoSync (VOID)
 
VOID UefiGetExtendedBIOSData (PULONG ExtendedBIOSDataArea, PULONG ExtendedBIOSDataSize)
 
PCONFIGURATION_COMPONENT_DATA UefiHwDetect (VOID)
 
VOID UefiPcBeep (VOID)
 
BOOLEAN UefiConsKbHit (VOID)
 
int UefiConsGetCh (void)
 
VOID UefiHwIdle (VOID)
 

Function Documentation

◆ DriveMapGetBiosDriveNumber()

UCHAR DriveMapGetBiosDriveNumber ( PCSTR  DeviceName)

Definition at line 15 of file stubs.c.

16{
17 return 0;
18}

◆ KeStallExecutionProcessor()

VOID NTAPI KeStallExecutionProcessor ( ULONG  Microseconds)

Definition at line 29 of file stubs.c.

30{
31 StallExecutionProcessor(Microseconds);
32}
VOID StallExecutionProcessor(ULONG Microseconds)
Definition: stubs.c:22

◆ StallExecutionProcessor()

VOID StallExecutionProcessor ( ULONG  Microseconds)

Definition at line 22 of file stubs.c.

23{
24
25}

Referenced by KeStallExecutionProcessor().

◆ UefiConsGetCh()

int UefiConsGetCh ( void  )

Definition at line 72 of file stubs.c.

73{
74 return 0;
75}

Referenced by MachInit().

◆ UefiConsKbHit()

BOOLEAN UefiConsKbHit ( VOID  )

Definition at line 66 of file stubs.c.

67{
68 return FALSE;
69}
#define FALSE
Definition: types.h:117

Referenced by MachInit().

◆ UefiGetExtendedBIOSData()

VOID UefiGetExtendedBIOSData ( PULONG  ExtendedBIOSDataArea,
PULONG  ExtendedBIOSDataSize 
)

Definition at line 47 of file stubs.c.

49{
50
51}

Referenced by MachInit().

◆ UefiHwDetect()

PCONFIGURATION_COMPONENT_DATA UefiHwDetect ( VOID  )

Definition at line 54 of file stubs.c.

55{
56 return 0;
57}

Referenced by MachInit().

◆ UefiHwIdle()

VOID UefiHwIdle ( VOID  )

Definition at line 78 of file stubs.c.

79{
80
81}

Referenced by MachInit().

◆ UefiPcBeep()

VOID UefiPcBeep ( VOID  )

Definition at line 60 of file stubs.c.

61{
62 /* Not possible on UEFI, for now */
63}

Referenced by MachInit().

◆ UefiVideoGetFontsFromFirmware()

VOID UefiVideoGetFontsFromFirmware ( PULONG  RomFontPointers)

Definition at line 35 of file stubs.c.

36{
37
38}

Referenced by MachInit().

◆ UefiVideoSync()

VOID UefiVideoSync ( VOID  )

Definition at line 41 of file stubs.c.

42{
43
44}

Referenced by MachInit().