2010-07-15 18:33:44 +02:00
|
|
|
/****************************************************************************
|
|
|
|
****************************************************************************
|
|
|
|
***
|
|
|
|
*** This header was automatically generated from a Linux kernel header
|
|
|
|
*** of the same name, to make information necessary for userspace to
|
|
|
|
*** call into the kernel available to libc. It contains only constants,
|
|
|
|
*** structures, and macros generated from the original header, and thus,
|
|
|
|
*** contains no copyrightable information.
|
|
|
|
***
|
2011-07-15 03:02:30 +02:00
|
|
|
*** To edit the content of this header, modify the corresponding
|
|
|
|
*** source file (e.g. under external/kernel-headers/original/) then
|
|
|
|
*** run bionic/libc/kernel/tools/update_all.py
|
|
|
|
***
|
|
|
|
*** Any manual change here will be lost the next time this script will
|
|
|
|
*** be run. You've been warned!
|
|
|
|
***
|
2010-07-15 18:33:44 +02:00
|
|
|
****************************************************************************
|
|
|
|
****************************************************************************/
|
|
|
|
#ifndef __LINUX_USB_F_MTP_H
|
|
|
|
#define __LINUX_USB_F_MTP_H
|
|
|
|
struct mtp_file_range {
|
|
|
|
int fd;
|
2011-07-15 03:02:30 +02:00
|
|
|
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
2010-07-15 18:33:44 +02:00
|
|
|
loff_t offset;
|
2010-11-16 23:33:50 +01:00
|
|
|
int64_t length;
|
2011-07-15 03:02:30 +02:00
|
|
|
uint16_t command;
|
|
|
|
uint32_t transaction_id;
|
|
|
|
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
2010-07-15 18:33:44 +02:00
|
|
|
};
|
|
|
|
struct mtp_event {
|
|
|
|
size_t length;
|
|
|
|
void *data;
|
2011-07-15 03:02:30 +02:00
|
|
|
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
2010-07-15 18:33:44 +02:00
|
|
|
};
|
|
|
|
#define MTP_SEND_FILE _IOW('M', 0, struct mtp_file_range)
|
|
|
|
#define MTP_RECEIVE_FILE _IOW('M', 1, struct mtp_file_range)
|
|
|
|
#define MTP_SEND_EVENT _IOW('M', 3, struct mtp_event)
|
2011-07-15 03:02:30 +02:00
|
|
|
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
|
|
#define MTP_SEND_FILE_WITH_HEADER _IOW('M', 4, struct mtp_file_range)
|
2010-07-15 18:33:44 +02:00
|
|
|
#endif
|