mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 06:53:43 +00:00
20 lines
345 B
C++
20 lines
345 B
C++
#include "GpSystemServices_Win32.h"
|
|
|
|
#include <assert.h>
|
|
|
|
GpSystemServices_Win32::GpSystemServices_Win32()
|
|
{
|
|
}
|
|
|
|
uint32_t GpSystemServices_Win32::GetTime() const
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
GpSystemServices_Win32 *GpSystemServices_Win32::GetInstance()
|
|
{
|
|
return &ms_instance;
|
|
}
|
|
|
|
GpSystemServices_Win32 GpSystemServices_Win32::ms_instance;
|