mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-11-10 09:40:53 +01:00
20 lines
338 B
C
20 lines
338 B
C
|
/*
|
||
|
* KextList.h
|
||
|
*
|
||
|
* Created on: Feb 4, 2021
|
||
|
* Author: jief
|
||
|
*/
|
||
|
|
||
|
#ifndef PLATFORM_KEXTLIST_H_
|
||
|
#define PLATFORM_KEXTLIST_H_
|
||
|
|
||
|
#include "../cpp_foundation/XObjArray.h"
|
||
|
#include "Settings.h"
|
||
|
|
||
|
// Sideload/inject kext
|
||
|
extern XObjArray<SIDELOAD_KEXT> InjectKextList;
|
||
|
|
||
|
void InitKextList(void);
|
||
|
|
||
|
#endif /* PLATFORM_KEXTLIST_H_ */
|