mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 04:18:43 +00:00
25 lines
471 B
C#
25 lines
471 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Cosmos.Sys
|
|
{
|
|
public static class BootInfo
|
|
{
|
|
public static uint GetVbeControlInfoAddr()
|
|
{
|
|
return UInt32.MaxValue;
|
|
}
|
|
|
|
public static uint GetVbeModeInfoAddr()
|
|
{
|
|
return UInt32.MaxValue;
|
|
}
|
|
|
|
public static ushort GetVbeMode()
|
|
{
|
|
return ushort.MaxValue;
|
|
}
|
|
}
|
|
}
|