mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-04-28 11:47:48 +02:00
I2P -> .NET
This commit is contained in:
parent
f176f1909b
commit
fdb0ce6703
272 changed files with 5702 additions and 8931 deletions
28
libdotnet/version.h
Normal file
28
libdotnet/version.h
Normal file
|
@ -0,0 +1,28 @@
|
|||
#ifndef _VERSION_H_
|
||||
#define _VERSION_H_
|
||||
|
||||
#define CODENAME "Opening"
|
||||
|
||||
#define STRINGIZE(x) #x
|
||||
#define MAKE_VERSION(a,b,c) STRINGIZE(a) "." STRINGIZE(b) "." STRINGIZE(c)
|
||||
|
||||
#define DOTNET_VERSION_MAJOR 0
|
||||
#define DOTNET_VERSION_MINOR 1
|
||||
#define DOTNET_VERSION_MICRO 16
|
||||
#define DOTNET_VERSION_PATCH 0
|
||||
#define DOTNET_VERSION MAKE_VERSION(DOTNET_VERSION_MAJOR, DOTNET_VERSION_MINOR, DOTNET_VERSION_MICRO)
|
||||
#define VERSION DOTNET_VERSION
|
||||
|
||||
#ifdef MESHNET
|
||||
#define DOTNET_NET_ID 3
|
||||
#else
|
||||
#define DOTNET_NET_ID 2
|
||||
#endif
|
||||
|
||||
#define DOTNET_VERSION_MAJOR 0
|
||||
#define DOTNET_VERSION_MINOR 1
|
||||
#define DOTNET_VERSION_MICRO 16
|
||||
#define DOTNET_VERSION_PATCH 0
|
||||
#define DOTNET_VERSION MAKE_VERSION(DOTNET_VERSION_MAJOR, DOTNET_VERSION_MINOR, DOTNET_VERSION_MICRO)
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue