mirror of
https://github.com/wiiu-env/WiiUPluginSystem.git
synced 2024-11-18 00:29:21 +01:00
33 lines
1.3 KiB
C
33 lines
1.3 KiB
C
/****************************************************************************
|
|
* Copyright (C) 2018 Maschell
|
|
*
|
|
* This program 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.
|
|
*
|
|
* This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
|
|
****************************************************************************/
|
|
#ifndef C_RETAINS_VARS_H_
|
|
#define C_RETAINS_VARS_H_
|
|
|
|
#include "memory_defs.h"
|
|
|
|
extern memHeapInfo expHeapPointer[MAX_EXP_HEAP_INFOS];
|
|
extern memHeapInfo frmHeapPointer[MAX_FRM_HEAP_INFOS];
|
|
extern memUnitHeapInfo unitHeapPointer[MAX_UNIT_HEAP_INFOS];
|
|
|
|
extern baseHeapInfo baseHeaphandles[MAX_BASE_HEAP_INFOS];
|
|
extern blockHeapInfo blockHeapInfos[MAX_BLOCK_HEAP_INFOS];
|
|
extern memHeapInfo userHeapInfos[MAX_USER_HEAP_INFOS];
|
|
|
|
extern u8 gButtonComboCooldown;
|
|
|
|
#endif // C_RETAINS_VARS_H_
|