blob: 4a4f9a1d8b16cd07112f24990d628e79d74560dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/**
* f_pc_profile.cpp
* Framework - Process Profile
*/
#include "f_pc/f_pc_profile.h"
process_profile_definition** g_fpcPf_ProfileList_p;
process_profile_definition* fpcPf_Get(s16 i_profname) {
int index = i_profname;
return g_fpcPf_ProfileList_p[index];
}
|