Files
mk64/src/camera_junk.h
T
Tyler McGavran 31d3ac14ec Put void in several function prototypes (#387)
I have historically made prototypes for argument-less functions
 with just plain `()` for the argument list. This has caused some
 minor pains when using `m2c` and is, pendatically, incorrect.

So I have changed all argument-less function protoypes to instead
 have `(void)` as the argument list. This required a couple small
 fixes here and there.
2023-08-26 12:48:45 -06:00

14 lines
244 B
C

#ifndef CAMERA_JUNK_H
#define CAMERA_JUNK_H
/* Function Prototypes */
void setup_camera_podium_ceremony(void);
void func_802816B8(void);
// guPerspective params
extern f32 D_80150148, D_8015014C, D_80150150;
extern f32 D_80150130[];
#endif