mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-04-29 17:40:01 +02:00
10 lines
182 B
C
10 lines
182 B
C
#pragma once
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
typedef struct {
|
|
uint16_t *src;
|
|
uint16_t *dst;
|
|
uint32_t *pm;
|
|
size_t n_frames;
|
|
size_t n_pixels;
|
|
} thread_args; |