mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-07-27 22:48:59 -04:00
a6e76c0841
* some wii OS fixes * remove old dol2asm comments * remove dol2asm.h * remove function address comments * normalize ATTRIBUTE_ALIGN usage * DECL_WEAK macro * fix gcc attribute weak macro * wrap more mwcc specific things in ifdefs * fixes * fix revo sdk version flags * fixes
24 lines
521 B
C++
24 lines
521 B
C++
/**
|
|
* f_op_camera_mng.cpp
|
|
* Camera Process Manager
|
|
*/
|
|
|
|
#include "f_op/f_op_camera_mng.h"
|
|
#include "f_pc/f_pc_layer.h"
|
|
#include "f_pc/f_pc_stdcreate_req.h"
|
|
|
|
static fpc_ProcID l_fopCamM_id[4];
|
|
|
|
u32 fopCamM_GetParam(camera_class* i_this) {
|
|
return fpcM_GetParam(i_this);
|
|
}
|
|
|
|
fpc_ProcID fopCamM_Create(int i_cameraIdx, s16 i_procName, void* i_append) {
|
|
l_fopCamM_id[i_cameraIdx] = fpcM_Create(i_procName, NULL, i_append);
|
|
return l_fopCamM_id[i_cameraIdx];
|
|
}
|
|
|
|
void fopCamM_Management() {}
|
|
|
|
void fopCamM_Init() {}
|