Library for controlling Moravian Instruments (MI) CCD cameras.

Copyright 2016, Moravian Instruments Inc <http://www.gxccd.com>
All rights reserved.

This library can be used to control MI CCD cameras connected over USB or Ethernet.
The library documentation is located in file gxxcd.h in include directory.

You should have a recent kernel, glibc and libusb library. Library should work
with glibc 2.34 or newer.
When using the static version (libgxccd.a) in your project, you must link
it against math (libm), realtime (librt), pthreads (libpthread) and usb-1.0 (libusb-1.0)
libraries, for example:

    $ cc -o test test.c -lpthread -lrt -lm -lusb-1.0 libgxccd.a

To see and use a test program, go to example directory, and (if you have make
and C compiler installed), run make. Then run produced binary file
(gxccd-test).

================================================================================

This library uses inih .INI parser:

The "inih" library is distributed under the New BSD license:

Copyright (c) 2009, Ben Hoyt
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
    * Redistributions of source code must retain the above copyright
      notice, this list of conditions and the following disclaimer.
    * Redistributions in binary form must reproduce the above copyright
      notice, this list of conditions and the following disclaimer in the
      documentation and/or other materials provided with the distribution.
    * Neither the name of Ben Hoyt nor the names of its contributors
      may be used to endorse or promote products derived from this software
      without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY BEN HOYT ''AS IS'' AND ANY
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL BEN HOYT BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
