mirror of
https://github.com/pbatard/rufus.git
synced 2025-05-31 23:08:26 -04:00
[cmp] add decompression support
* Adds .Z, .gz, .lzma, .xz and .bz2 decompression support for DD images using the Bled library (https://github.com/pbatard/bled). * Closes #269
This commit is contained in:
parent
3f0e71f3ba
commit
7599715ae6
56 changed files with 10020 additions and 89 deletions
16
src/msvc-missing/stdbool.h
Normal file
16
src/msvc-missing/stdbool.h
Normal file
|
@ -0,0 +1,16 @@
|
|||
/* Workaround stdbool.h for WDK compilers - Public Domain */
|
||||
|
||||
#include <windows.h>
|
||||
|
||||
#ifndef _STDBOOL
|
||||
#define _STDBOOL
|
||||
|
||||
#ifndef __cplusplus
|
||||
|
||||
#define bool BOOL
|
||||
#define false FALSE
|
||||
#define true TRUE
|
||||
|
||||
#endif
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue