mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2025-01-11 03:19:46 +01:00
4964cb7bc3
This is just a function that calls the cleanup() in main.cpp, as well as calls exit(). I would have liked to use SDL_ExitProcess() here, because that function has ifdefs for different runtime environments. But alas, it's an internal function and isn't exported. Ah well; exit() seems to be fine anyway.
6 lines
100 B
C
6 lines
100 B
C
#ifndef VVV_EXIT_H
|
|
#define VVV_EXIT_H
|
|
|
|
void VVV_exit(const int exit_code);
|
|
|
|
#endif /* VVV_EXIT_H */
|