mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 18:51:46 +00:00
12 lines
293 B
C++
12 lines
293 B
C++
|
#include <stdint.h>
|
||
|
#include <stdio.h>
|
||
|
|
||
|
#include "../server/TracyFileHeader.hpp"
|
||
|
#include "../server/TracyVersion.hpp"
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
const auto ver = uint32_t( tracy::FileVersion( tracy::Version::Major, tracy::Version::Minor, tracy::Version::Patch ) );
|
||
|
fwrite( &ver, 1, 4, stdout );
|
||
|
}
|