Besides, .h files are usually for headers, not procedural code. It should be something like:
void HitCounter();
void Update_Uptime();
And then add a .cpp file that actually implements those functions.
Besides, .h files are usually for headers, not procedural code. It should be something like:
void HitCounter();
void Update_Uptime();
And then add a .cpp file that actually implements those functions.