gxci 0.2.1

A safe raw-and-HAL camera interface based on Daheng-Image's GxIAPI(Galaxy Camera SDK)
Documentation
1
2
3
4
5
6
7
8
#![allow(dead_code)]

use crate::raw::{gx_struct::*,gx_enum::*};
use std::ffi::c_void;

pub type GXCaptureCallBack = extern "C" fn(pFrameData: *mut GX_FRAME_CALLBACK_PARAM);
pub type GXDeviceOfflineCallBack = extern "C" fn(pUserParam: *mut c_void);
pub type GXFeatureCallBack = extern "C" fn(nFeatureID:GX_FEATURE_ID,pUserParam: *mut c_void);