mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-16 00:15:08 +01:00
0f17471b27
*Added sources of the custom libs to the branches *Fixed crash when switching from list layout to grid/carousel layout *Removed 1:1 copy option because its meaningless and almost the same as installing all partitions *Fixed install partition selection. This option needs a reset. Go to settings and reselect your option for this. *Fixed schinese and tchinese language modes (filename bugs. has to be schinese.lang and tchinese.lang like on SVN) *Fixed bug in sound buffer circle *Fixed incorrect behaviour of x-flip when selecting system like (thx Cyan for the patch) *Accept ios revision 65535 for Waninkokos IOSes (thx to PPSainity for pointing it out) *Merged the new theming style branch into trunk. Just as a reminder: ALL old themes will not work until the themers did port it to the new style! *Removed old theme style completely Theme example: The example file of the theme is the Default.them file. It can be found in the SVN trunk. Change in loading of themes: When selecting a theme now a list of all .them files in a folder is displayed. The image folder of that theme has to be in the same folder as the .them file. The image path is defined in the head of the .them file in the line with "Image-Folder: Example\n".
87 lines
2.1 KiB
C
87 lines
2.1 KiB
C
/*
|
|
* brel.h
|
|
*
|
|
* Copyright (C) 1996, 1997 Theodore Ts'o.
|
|
*
|
|
* %Begin-Header%
|
|
* This file may be redistributed under the terms of the GNU Library
|
|
* General Public License, version 2.
|
|
* %End-Header%
|
|
*/
|
|
|
|
struct ext2_block_relocate_entry {
|
|
blk_t new;
|
|
__s16 offset;
|
|
__u16 flags;
|
|
union {
|
|
blk_t block_ref;
|
|
ext2_ino_t inode_ref;
|
|
} owner;
|
|
};
|
|
|
|
#define RELOCATE_TYPE_REF 0x0007
|
|
#define RELOCATE_BLOCK_REF 0x0001
|
|
#define RELOCATE_INODE_REF 0x0002
|
|
|
|
typedef struct ext2_block_relocation_table *ext2_brel;
|
|
|
|
struct ext2_block_relocation_table {
|
|
__u32 magic;
|
|
char *name;
|
|
blk_t current;
|
|
void *priv_data;
|
|
|
|
/*
|
|
* Add a block relocation entry.
|
|
*/
|
|
errcode_t (*put)(ext2_brel brel, blk_t old,
|
|
struct ext2_block_relocate_entry *ent);
|
|
|
|
/*
|
|
* Get a block relocation entry.
|
|
*/
|
|
errcode_t (*get)(ext2_brel brel, blk_t old,
|
|
struct ext2_block_relocate_entry *ent);
|
|
|
|
/*
|
|
* Initialize for iterating over the block relocation entries.
|
|
*/
|
|
errcode_t (*start_iter)(ext2_brel brel);
|
|
|
|
/*
|
|
* The iterator function for the inode relocation entries.
|
|
* Returns an inode number of 0 when out of entries.
|
|
*/
|
|
errcode_t (*next)(ext2_brel brel, blk_t *old,
|
|
struct ext2_block_relocate_entry *ent);
|
|
|
|
/*
|
|
* Move the inode relocation table from one block number to
|
|
* another.
|
|
*/
|
|
errcode_t (*move)(ext2_brel brel, blk_t old, blk_t new);
|
|
|
|
/*
|
|
* Remove a block relocation entry.
|
|
*/
|
|
errcode_t (*delete)(ext2_brel brel, blk_t old);
|
|
|
|
|
|
/*
|
|
* Free the block relocation table.
|
|
*/
|
|
errcode_t (*free)(ext2_brel brel);
|
|
};
|
|
|
|
errcode_t ext2fs_brel_memarray_create(char *name, blk_t max_block,
|
|
ext2_brel *brel);
|
|
|
|
#define ext2fs_brel_put(brel, old, ent) ((brel)->put((brel), old, ent))
|
|
#define ext2fs_brel_get(brel, old, ent) ((brel)->get((brel), old, ent))
|
|
#define ext2fs_brel_start_iter(brel) ((brel)->start_iter((brel)))
|
|
#define ext2fs_brel_next(brel, old, ent) ((brel)->next((brel), old, ent))
|
|
#define ext2fs_brel_move(brel, old, new) ((brel)->move((brel), old, new))
|
|
#define ext2fs_brel_delete(brel, old) ((brel)->delete((brel), old))
|
|
#define ext2fs_brel_free(brel) ((brel)->free((brel)))
|
|
|