Scheduled service maintenance on November 22


On Friday, November 22, 2024, between 06:00 CET and 18:00 CET, GIN services will undergo planned maintenance. Extended service interruptions should be expected. We will try to keep downtimes to a minimum, but recommend that users avoid critical tasks, large data uploads, or DOI requests during this time.

We apologize for any inconvenience.

main.cpp 840 B

1234567891011121314151617181920212223242526272829303132333435
  1. // =STS=> main.cpp[2461].aa17 open SMID:18
  2. ///////////////////////////////////////////////////////////////////////
  3. //
  4. // Cerebus SDK
  5. //
  6. // (c) Copyright 2012-2013 Blackrock Microsystems
  7. //
  8. // $Workfile: main.cpp $
  9. // $Archive: /Cerebus/Human/WindowsApps/cbmex/main.cpp $
  10. // $Revision: 1 $
  11. // $Date: 04/29/12 11:06a $
  12. // $Author: Ehsan $
  13. //
  14. // Purpose:
  15. // Produce SDK version information
  16. //
  17. //
  18. #include "StdAfx.h"
  19. #include "../CentralCommon/BmiVersion.h"
  20. // Author & Date: Ehsan Azar 29 April 2012
  21. // Purpose: Print out the compatible library version
  22. int main(int argc, char *argv[])
  23. {
  24. int major = BMI_VERSION_MAJOR;
  25. int minor = BMI_VERSION_MINOR;
  26. int release = BMI_VERSION_RELEASE;
  27. // We assume the beta releases all share the same ABI
  28. printf("%d.%02d.%02d", major, minor, release);
  29. return 0;
  30. }