Add uint typedef

This commit is contained in:
LagoLunatic
2024-03-11 18:23:44 -04:00
parent 029ddf6bb9
commit d0e8844b4b
103 changed files with 187 additions and 185 deletions
+2 -2
View File
@@ -14,7 +14,7 @@ base_process_class* fpcEx_Search(fpcLyIt_JudgeFunc i_judgeFunc, void* i_data) {
}
/* 8003D5D0-8003D614 .text fpcEx_SearchByID__FUi */
base_process_class* fpcEx_SearchByID(unsigned int i_id) {
base_process_class* fpcEx_SearchByID(uint i_id) {
if (i_id + 2 <= 1)
return NULL;
@@ -22,7 +22,7 @@ base_process_class* fpcEx_SearchByID(unsigned int i_id) {
}
/* 8003D614-8003D63C .text fpcEx_IsExist__FUi */
BOOL fpcEx_IsExist(unsigned int i_id) {
BOOL fpcEx_IsExist(uint i_id) {
return fpcEx_SearchByID(i_id) != NULL ? TRUE : FALSE;
}