mirror of
https://github.com/joel16/procfw.git
synced 2024-11-23 11:39:54 +00:00
36 lines
1.1 KiB
C
36 lines
1.1 KiB
C
/*
|
|
* This file is part of PRO CFW.
|
|
|
|
* PRO CFW is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
|
|
* PRO CFW is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with PRO CFW. If not, see <http://www.gnu.org/licenses/ .
|
|
*/
|
|
|
|
#ifndef STARGATE_PATCH_OFFSET_H
|
|
#define STARGATE_PATCH_OFFSET_H
|
|
|
|
#include "utils.h"
|
|
|
|
typedef struct _PatchOffset {
|
|
u32 fw_version;
|
|
u32 sceMesgLedDecryptGame1[PSP_11000+1];
|
|
u32 sceMesgLedDecryptGame2[PSP_11000+1];
|
|
u32 mesgled_decrypt;
|
|
u32 LoadExecForUser_362A956B_fix;
|
|
} PatchOffset;
|
|
|
|
extern PatchOffset *g_offs;
|
|
|
|
void setup_patch_offset_table(u32 fw_version);
|
|
|
|
#endif
|