mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-17 08:11:51 +00:00
15 lines
321 B
C
15 lines
321 B
C
|
/*
|
||
|
* Copyright (c) 2011-2013 by naehrwert
|
||
|
* This file is released under the GPLv2.
|
||
|
*/
|
||
|
|
||
|
|
||
|
#ifndef _FRONTEND_H_
|
||
|
#define _FRONTEND_H_
|
||
|
|
||
|
void frontend_print_infos(scetool::s8 *file);
|
||
|
void frontend_decrypt(scetool::s8 *file_in, scetool::s8 *file_out);
|
||
|
void frontend_encrypt(scetool::s8 *file_in, scetool::s8 *file_out);
|
||
|
|
||
|
#endif
|