fatfix.h
来自「XOSL 多操作系统管理工具 源代码 多系统引导工具」· C头文件 代码 · 共 34 行
H
34 行
/*
* Extended Operating System Loader (XOSL)
* Copyright (c) 1999 by Geurt Vos
*
* This code is distributed under GNU General Public License (GPL)
*
* The full text of the license can be found in the GPL.TXT file,
* or at http://www.gnu.org
*/
#ifndef __fatfix__
#define __fatfix__
#include <newdefs.h>
#include <fat16.h>
#include <fat32.h>
#include <ptab.h>
typedef union {
TBootFAT16 BootFAT16;
TBootFAT32 BootFAT32;
} TBootRecord;
class CDriveFix {
public:
CDriveFix();
~CDriveFix();
int CanFixFAT(const TPartition *Partition);
void FixFAT(int Drive, int FSType, TBootRecord *BootRecord);
static void SwapDrive(int Drive);
};
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?