mirror of
https://github.com/akuker/RASCSI.git
synced 2024-11-19 12:32:29 +00:00
08194af424
- Moved C++ code to cpp/ from src/raspberrypi - Related updates to Makefile, easyinstall.sh, and the github build rules - Removed the native X68k C code in src/x68k from the repo
19 lines
531 B
C++
19 lines
531 B
C++
//---------------------------------------------------------------------------
|
|
//
|
|
// SCSI Target Emulator RaSCSI Reloaded
|
|
// for Raspberry Pi
|
|
//
|
|
// Copyright (C) 2020 akuker
|
|
// [ Define the version string ]
|
|
//
|
|
//---------------------------------------------------------------------------
|
|
#pragma once
|
|
|
|
#include <string>
|
|
|
|
extern const int rascsi_major_version; // Last two digits of year
|
|
extern const int rascsi_minor_version; // Month
|
|
extern const int rascsi_patch_version; // Patch number
|
|
|
|
std::string rascsi_get_version_string();
|