12345678910111213141516171819202122232425262728293031323334353637 |
- #ifndef __LINUX_IVTVFB_H__
- #define __LINUX_IVTVFB_H__
- #include <linux/types.h>
- struct ivtvfb_dma_frame {
- void *source;
- unsigned long dest_offset;
- int count;
- };
- #define IVTVFB_IOC_DMA_FRAME _IOW('V', BASE_VIDIOC_PRIVATE+0, struct ivtvfb_dma_frame)
- #endif
|