/* $Id: odinbuild.h,v 1.378 2004-01-23 03:02:58 bird Exp $ * * Odin32 version number and build numbers. * * Copyright (c) 2001 knut st. osmundsen (knut.stange.osmundsen@mynd.no) * * Project Odin Software License can be found in LICENSE.TXT * */ #ifndef _ODINBUILD_H_ #define _ODINBUILD_H_ #ifdef __cplusplus extern "C" { #endif /* * API for querying the build number of Odin32. Well.. Kernel32 really... */ #ifdef WIN32API int WIN32API Odin32GetBuildNumber(void); #endif #ifdef __cplusplus } // extern "C" #endif /* * Current Odin version and build number. * Used for bldlevel info. */ #define ODIN32_VERSION_MAJOR 0 #define ODIN32_VERSION_MINOR 8 #define ODIN32_VERSION "0.8" #define ODIN32_BUILD_NR 5 #endif