2012-04-21 21:13:50 +00:00
|
|
|
/* RetroArch - A frontend for libretro.
|
2012-01-08 00:08:18 +00:00
|
|
|
* Copyright (C) 2010-2012 - Hans-Kristian Arntzen
|
2011-08-17 22:05:56 +00:00
|
|
|
*
|
2012-04-21 21:13:50 +00:00
|
|
|
* RetroArch is free software: you can redistribute it and/or modify it under the terms
|
2011-08-17 22:05:56 +00:00
|
|
|
* of the GNU General Public License as published by the Free Software Found-
|
|
|
|
* ation, either version 3 of the License, or (at your option) any later version.
|
|
|
|
*
|
2012-04-21 21:13:50 +00:00
|
|
|
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
2011-08-17 22:05:56 +00:00
|
|
|
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE. See the GNU General Public License for more details.
|
|
|
|
*
|
2012-04-21 21:31:57 +00:00
|
|
|
* You should have received a copy of the GNU General Public License along with RetroArch.
|
2011-08-17 22:05:56 +00:00
|
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2012-03-16 22:46:56 +00:00
|
|
|
#ifndef __PATCH_H
|
|
|
|
#define __PATCH_H
|
2011-08-17 22:05:56 +00:00
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
|
2012-03-20 22:08:34 +00:00
|
|
|
// BPS/UPS/IPS implementation from bSNES (nall::).
|
2012-04-22 00:06:34 +00:00
|
|
|
// Modified for RetroArch.
|
2011-08-17 22:05:56 +00:00
|
|
|
|
2012-03-17 00:10:57 +00:00
|
|
|
typedef enum
|
2011-08-17 22:05:56 +00:00
|
|
|
{
|
2012-03-17 00:10:57 +00:00
|
|
|
PATCH_UNKNOWN,
|
|
|
|
PATCH_SUCCESS,
|
|
|
|
PATCH_PATCH_TOO_SMALL,
|
|
|
|
PATCH_PATCH_INVALID_HEADER,
|
|
|
|
PATCH_PATCH_INVALID,
|
|
|
|
PATCH_SOURCE_TOO_SMALL,
|
|
|
|
PATCH_TARGET_TOO_SMALL,
|
|
|
|
PATCH_SOURCE_INVALID,
|
|
|
|
PATCH_TARGET_INVALID,
|
|
|
|
PATCH_SOURCE_CHECKSUM_INVALID,
|
|
|
|
PATCH_TARGET_CHECKSUM_INVALID,
|
|
|
|
PATCH_PATCH_CHECKSUM_INVALID
|
|
|
|
} patch_error_t;
|
|
|
|
|
|
|
|
typedef patch_error_t (*patch_func_t)(const uint8_t*, size_t, const uint8_t*, size_t, uint8_t*, size_t*);
|
|
|
|
|
|
|
|
patch_error_t bps_apply_patch(
|
2011-08-17 22:05:56 +00:00
|
|
|
const uint8_t *patch_data, size_t patch_length,
|
|
|
|
const uint8_t *source_data, size_t source_length,
|
|
|
|
uint8_t *target_data, size_t *target_length);
|
|
|
|
|
2012-03-17 00:10:57 +00:00
|
|
|
patch_error_t ups_apply_patch(
|
2012-03-16 22:46:56 +00:00
|
|
|
const uint8_t *patch_data, size_t patch_length,
|
|
|
|
const uint8_t *source_data, size_t source_length,
|
|
|
|
uint8_t *target_data, size_t *target_length);
|
|
|
|
|
2012-03-20 22:08:34 +00:00
|
|
|
|
|
|
|
patch_error_t ips_apply_patch(
|
|
|
|
const uint8_t *patch_data, size_t patch_length,
|
|
|
|
const uint8_t *source_data, size_t source_length,
|
|
|
|
uint8_t *target_data, size_t *target_length);
|
|
|
|
|
2012-03-16 22:46:56 +00:00
|
|
|
#endif
|