mirror of
https://github.com/akuker/RASCSI.git
synced 2024-12-22 15:30:09 +00:00
22 lines
702 B
C
22 lines
702 B
C
|
//---------------------------------------------------------------------------
|
||
|
//
|
||
|
// SCSI Target Emulator RaSCSI (*^..^*)
|
||
|
// for Raspberry Pi
|
||
|
//
|
||
|
// Copyright (C) 2020 akuker
|
||
|
// [ Define the version string]
|
||
|
//
|
||
|
//---------------------------------------------------------------------------
|
||
|
#pragma once
|
||
|
|
||
|
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
|
||
|
|
||
|
//---------------------------------------------------------------------------
|
||
|
//
|
||
|
// Fetch the version string
|
||
|
//
|
||
|
//---------------------------------------------------------------------------
|
||
|
extern char* rascsi_get_version_string();
|