f7bbc4bfec
Apparently it causes compatibility issues
15 lines
321 B
C
15 lines
321 B
C
/*
|
|
* utils.h
|
|
* by Aurora Wright
|
|
* Copyright (c) 2016 All Rights Reserved
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "types.h"
|
|
|
|
#define CFG_BOOTENV (*(vu32 *)0x10010000)
|
|
|
|
void configureCFW(const char *configPath, const char *patchedFirms[]);
|
|
void deleteFirms(const char *firmPaths[], u32 firms);
|
|
void error(const char *message); |