MC3302_SDK_V1.1.9_202507281.../bsp/test/lzma/custom_ioctl.h
2025-11-11 12:08:31 +08:00

16 lines
280 B
C
Executable File

#ifndef CUSTOM_IOCTL_H
#define CUSTOM_IOCTL_H
#include <linux/ioctl.h>
#define CUSTOM_IOC_MAGIC 'k'
#define LZMA_DECODE_CMD _IOW(CUSTOM_IOC_MAGIC, 1, struct custom_data)
struct custom_data {
unsigned int src;
unsigned int dst;
size_t len;
};
#endif