Add a *ton* of const and constexpr around the codebase. (#1864)

* Add a *ton* of const and constexpr around the codebase.

This makes the codebase compile without strings being cast to non-const char*. I also went through and added constexpr where appropriate for tons of static data.

* Make process definitions const too

Might as well
This commit is contained in:
Pieter-Jan Briers
2026-05-28 07:12:16 +02:00
committed by GitHub
parent db39a9c7f3
commit 5d68762590
954 changed files with 4693 additions and 4682 deletions
+4 -4
View File
@@ -12,18 +12,18 @@ int fpcMtd_Method(process_method_func i_method, void* i_process) {
return 1;
}
int fpcMtd_Execute(process_method_class* i_methods, void* i_process) {
int fpcMtd_Execute(process_method_class DUSK_CONST* i_methods, void* i_process) {
return fpcMtd_Method(i_methods->execute_method, i_process);
}
int fpcMtd_IsDelete(process_method_class* i_methods, void* i_process) {
int fpcMtd_IsDelete(process_method_class DUSK_CONST* i_methods, void* i_process) {
return fpcMtd_Method(i_methods->is_delete_method, i_process);
}
int fpcMtd_Delete(process_method_class* i_methods, void* i_process) {
int fpcMtd_Delete(process_method_class DUSK_CONST* i_methods, void* i_process) {
return fpcMtd_Method(i_methods->delete_method, i_process);
}
int fpcMtd_Create(process_method_class* i_methods, void* i_process) {
int fpcMtd_Create(process_method_class DUSK_CONST* i_methods, void* i_process) {
return fpcMtd_Method(i_methods->create_method, i_process);
}