gxci 0.3.8

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
9
10
//! Callback function for frame data acquisition, type declaration.
#![allow(dead_code)]
#![allow(non_snake_case)]

use crate::raw::{gx_enum::*, gx_struct::*};
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);