blob: 8037f1bfcd36a7bd81ccb970bf69331aa5424b44 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef F_PC_STDCREATE_H_
#define F_PC_STDCREATE_H_
#include "f_pc/f_pc_create_req.h"
typedef struct layer_class layer_class;
typedef int (*stdCreateFunc)(void*, void*);
fpc_ProcID fpcSCtRq_Request(layer_class* i_layer, s16 i_procName, stdCreateFunc i_createFunc,
void* param_4, void* i_append);
#endif
|