Rename functions.

This commit is contained in:
Chris Spegal 2025-04-06 00:37:50 -04:00
parent 345098c37a
commit cbfb5c519b
3 changed files with 6 additions and 6 deletions

View file

@ -205,7 +205,7 @@ void osLib_save(MemStreamWriter& s)
nlibcurl::save(s); nlibcurl::save(s);
nsyshid::save(s); nsyshid::save(s);
camera::save(s); camera::save(s);
procui_save(s); proc_ui::save(s);
} }
void osLib_restore(MemStreamReader& s) void osLib_restore(MemStreamReader& s)
{ {
@ -225,7 +225,7 @@ void osLib_restore(MemStreamReader& s)
nlibcurl::restore(s); nlibcurl::restore(s);
nsyshid::restore(s); nsyshid::restore(s);
camera::restore(s); camera::restore(s);
procui_restore(s); proc_ui::restore(s);
} }
void osLib_load() void osLib_load()

View file

@ -875,12 +875,12 @@ namespace proc_ui
s_driverInBackground = false; s_driverInBackground = false;
} }
void ProcUISave(MemStreamWriter& s) void save(MemStreamWriter& s)
{ {
s.writeSection("proc_ui"); s.writeSection("proc_ui");
} }
void ProcUIRestore(MemStreamReader& s) void restore(MemStreamReader& s)
{ {
s.readSection("proc_ui"); s.readSection("proc_ui");
} }

View file

@ -39,8 +39,8 @@ namespace proc_ui
void ProcUIDrawDoneRelease(); void ProcUIDrawDoneRelease();
ProcUIStatus ProcUIProcessMessages(bool isBlockingInBackground); ProcUIStatus ProcUIProcessMessages(bool isBlockingInBackground);
ProcUIStatus ProcUISubProcessMessages(bool isBlockingInBackground); ProcUIStatus ProcUISubProcessMessages(bool isBlockingInBackground);
void ProcUISave(MemStreamWriter& s);
void ProcUIRestore(MemStreamReader& s);
void save(MemStreamWriter& s);
void restore(MemStreamReader& s);
void load(); void load();
} }