blob: 6d30c39d9dd774683547d515c63f34ea3ef618ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
//
// Generated by dtk
// Translation Unit: c_bg_s_chk.cpp
//
#include "SSystem/SComponent/c_bg_s_chk.h"
#include "f_pc/f_pc_manager.h"
/* 80247304-8024734C .text __dt__8cBgS_ChkFv */
cBgS_Chk::~cBgS_Chk() {
}
/* 8024734C-8024738C .text ChkSameActorPid__8cBgS_ChkCFUi */
bool cBgS_Chk::ChkSameActorPid(fpc_ProcID pid) const {
if (mActorPid == fpcM_ERROR_PROCESS_ID_e || pid == fpcM_ERROR_PROCESS_ID_e || mSameActorChk == 0) {
return FALSE;
} else {
return (mActorPid == pid) ? TRUE : FALSE;
}
}
|