mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-18 17:42:36 -05:00
There are some real bugs in here, but we're drowning in warnings. Change-Id: I7c2c0eafc8426327521bdd8a3ac2d3742ac16864
39 lines
No EOL
914 B
C
39 lines
No EOL
914 B
C
#ifndef _CVARDEFS_H_
|
|
#define _CVARDEFS_H_
|
|
|
|
#include <inttypes.h>
|
|
|
|
void CVARDEFS_Init(void);
|
|
void CVARDEFS_Render(void);
|
|
//
|
|
// Function declarations
|
|
//
|
|
void CVARDEFS_DefaultFunction(void* var);
|
|
void CVARDEFS_FunctionQuit(void* var);
|
|
void CVARDEFS_FunctionClear(void* var);
|
|
void CVARDEFS_FunctionLevel(void* var);
|
|
void CVARDEFS_FunctionName(void* var);
|
|
void CVARDEFS_FunctionPlayMidi(void* var);
|
|
void CVARDEFS_FunctionFOV(void* var);
|
|
void CVARDEFS_FunctionTickRate(void* var);
|
|
void CVARDEFS_FunctionTicksPerFrame(void* var);
|
|
void CVARDEFS_FunctionHelp(void* var);
|
|
|
|
//
|
|
// Variable declarations
|
|
//
|
|
int g_CV_console_text_color;
|
|
int g_CV_num_console_lines;
|
|
int g_CV_classic;
|
|
int g_CV_TransConsole;
|
|
int g_CV_DebugJoystick;
|
|
int g_CV_DebugSound;
|
|
int g_CV_DebugFileAccess;
|
|
uint32_t sounddebugActiveSounds;
|
|
uint32_t sounddebugAllocateSoundCalls;
|
|
uint32_t sounddebugDeallocateSoundCalls;
|
|
|
|
|
|
int g_CV_CubicInterpolation;
|
|
|
|
#endif |