Mercurial > hg > bitcoin
view src/clientversion.h @ 3633:94f6e3e0c600 draft
Merge pull request #1880 from sipa/threadimport
Move external block import to separate thread
author | Jeff Garzik <jgarzik@exmulti.com> |
---|---|
date | Sat, 20 Oct 2012 13:36:36 -0700 |
parents | 9c994f46fca6 |
children | d89dee56cd34 |
line wrap: on
line source
#ifndef CLIENTVERSION_H #define CLIENTVERSION_H // // client versioning // // These need to be macros, as version.cpp's and bitcoin-qt.rc's voodoo requires it #define CLIENT_VERSION_MAJOR 0 #define CLIENT_VERSION_MINOR 7 #define CLIENT_VERSION_REVISION 1 #define CLIENT_VERSION_BUILD 0 // Converts the parameter X to a string after macro replacement on X has been performed. // Don't merge these into one macro! #define STRINGIZE(X) DO_STRINGIZE(X) #define DO_STRINGIZE(X) #X #endif // CLIENTVERSION_H