mirror of
https://github.com/pbatard/rufus.git
synced 2025-05-20 09:55:11 -04:00
[sl] syslinux support (EXPERIMENTAL)
* MS platforms only (*BREAKS* MinGW)
This commit is contained in:
parent
130afd8294
commit
acf7d072b0
43 changed files with 3063 additions and 57 deletions
|
@ -117,8 +117,9 @@ enum {
|
|||
};
|
||||
|
||||
enum dos_type {
|
||||
DT_FREEDOS = 0,
|
||||
DT_WINME,
|
||||
DT_WINME = 0,
|
||||
DT_FREEDOS,
|
||||
DT_SYSLINUX,
|
||||
DT_MAX
|
||||
};
|
||||
|
||||
|
@ -163,7 +164,8 @@ extern HWND CreateTooltip(HWND hControl, const char* message, int duration);
|
|||
extern void DestroyTooltip(HWND hWnd);
|
||||
extern void DestroyAllTooltips(void);
|
||||
extern BOOL Notification(int type, char* title, char* format, ...);
|
||||
extern BOOL ExtractDOS(const char* path, int dos_type);
|
||||
extern BOOL ExtractDOS(const char* path);
|
||||
extern BOOL InstallSysLinux(DWORD num, const char* drive_name);
|
||||
extern void __cdecl FormatThread(void* param);
|
||||
extern BOOL CreatePartition(HANDLE hDrive);
|
||||
extern HANDLE GetDriveHandle(DWORD DriveIndex, char* DriveLetter, BOOL bWriteAccess, BOOL bLockDrive);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue