mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-11-24 11:45:27 +01:00
286f7c643f
When this option is enabled all png images will be converted to PNG-8 (8 bit per pixel).
26 lines
470 B
Objective-C
26 lines
470 B
Objective-C
//
|
|
// Use this file to import your target's public headers that you would like to expose to Swift.
|
|
//
|
|
|
|
#ifndef CLOVERAPPLICATION
|
|
#define CLOVERAPPLICATION 1
|
|
#endif
|
|
|
|
#ifdef DEBUG
|
|
#define DEBUG_BACKUP DEBUG // backup original
|
|
#undef DEBUG
|
|
#endif
|
|
|
|
#include "../../rEFIt_UEFI/Platform/Platform.h"
|
|
|
|
#ifdef DEBUG_BACKUP
|
|
#undef DEBUG
|
|
#define DEBUG DEBUG_BACKUP // restore original
|
|
#endif
|
|
|
|
#import "NSWindowFix.h"
|
|
#import "PNG8Image.h"
|
|
#import "gfxutil.h"
|
|
#import "efidevp.h"
|
|
|