libmtp.h | libmtp.h | |||
---|---|---|---|---|
skipping to change at line 13 | skipping to change at line 13 | |||
* | * | |||
* Interface to the Media Transfer Protocol library. | * Interface to the Media Transfer Protocol library. | |||
* | * | |||
* <code> | * <code> | |||
* #include <libmtp.h> | * #include <libmtp.h> | |||
* </code> | * </code> | |||
*/ | */ | |||
#ifndef LIBMTP_H_INCLUSION_GUARD | #ifndef LIBMTP_H_INCLUSION_GUARD | |||
#define LIBMTP_H_INCLUSION_GUARD | #define LIBMTP_H_INCLUSION_GUARD | |||
#define LIBMTP_VERSION 0.0.18 | #define LIBMTP_VERSION 0.0.19 | |||
/* This handles MSVC pecularities */ | /* This handles MSVC pecularities */ | |||
#ifdef _MSC_VER | #ifdef _MSC_VER | |||
#include <windows.h> | #include <windows.h> | |||
#define __WIN32__ | #define __WIN32__ | |||
#define snprintf _snprintf | #define snprintf _snprintf | |||
#define ssize_t SSIZE_T | #define ssize_t SSIZE_T | |||
#endif | #endif | |||
#include <stdio.h> | #include <stdio.h> | |||
skipping to change at line 133 | skipping to change at line 133 | |||
* Parameters for this device, must be cast into | * Parameters for this device, must be cast into | |||
* \c (PTPParams*) before internal use. | * \c (PTPParams*) before internal use. | |||
*/ | */ | |||
void *params; | void *params; | |||
/** | /** | |||
* USB device for this device, must be cast into | * USB device for this device, must be cast into | |||
* \c (PTP_USB*) before internal use. | * \c (PTP_USB*) before internal use. | |||
*/ | */ | |||
void *usbinfo; | void *usbinfo; | |||
/** The storage ID for this device */ | /** The storage ID for this device */ | |||
unsigned storage_id; | uint32_t storage_id; | |||
/** The maximum battery level for this device */ | /** The maximum battery level for this device */ | |||
uint8_t maximum_battery_level; | uint8_t maximum_battery_level; | |||
/** Default music folder */ | /** Default music folder */ | |||
uint32_t default_music_folder; | uint32_t default_music_folder; | |||
/** Default playlist folder */ | /** Default playlist folder */ | |||
uint32_t default_playlist_folder; | uint32_t default_playlist_folder; | |||
/** Default picture folder */ | /** Default picture folder */ | |||
uint32_t default_picture_folder; | uint32_t default_picture_folder; | |||
/** Default video folder */ | /** Default video folder */ | |||
uint32_t default_video_folder; | uint32_t default_video_folder; | |||
skipping to change at line 257 | skipping to change at line 257 | |||
char *LIBMTP_Get_Modelname(LIBMTP_mtpdevice_t*); | char *LIBMTP_Get_Modelname(LIBMTP_mtpdevice_t*); | |||
char *LIBMTP_Get_Serialnumber(LIBMTP_mtpdevice_t*); | char *LIBMTP_Get_Serialnumber(LIBMTP_mtpdevice_t*); | |||
char *LIBMTP_Get_Deviceversion(LIBMTP_mtpdevice_t*); | char *LIBMTP_Get_Deviceversion(LIBMTP_mtpdevice_t*); | |||
char *LIBMTP_Get_Friendlyname(LIBMTP_mtpdevice_t*); | char *LIBMTP_Get_Friendlyname(LIBMTP_mtpdevice_t*); | |||
int LIBMTP_Set_Friendlyname(LIBMTP_mtpdevice_t*, char const * const); | int LIBMTP_Set_Friendlyname(LIBMTP_mtpdevice_t*, char const * const); | |||
char *LIBMTP_Get_Syncpartner(LIBMTP_mtpdevice_t*); | char *LIBMTP_Get_Syncpartner(LIBMTP_mtpdevice_t*); | |||
int LIBMTP_Set_Syncpartner(LIBMTP_mtpdevice_t*, char const * const); | int LIBMTP_Set_Syncpartner(LIBMTP_mtpdevice_t*, char const * const); | |||
int LIBMTP_Get_Storageinfo(LIBMTP_mtpdevice_t *, uint64_t * const, | int LIBMTP_Get_Storageinfo(LIBMTP_mtpdevice_t *, uint64_t * const, | |||
uint64_t * const, char ** const storage_description, | uint64_t * const, char ** const storage_description, | |||
char ** const volume_label); | char ** const volume_label); | |||
int LIBMTP_Format_Storage(LIBMTP_mtpdevice_t *); | ||||
int LIBMTP_Get_Batterylevel(LIBMTP_mtpdevice_t *, | int LIBMTP_Get_Batterylevel(LIBMTP_mtpdevice_t *, | |||
uint8_t * const, | uint8_t * const, | |||
uint8_t * const); | uint8_t * const); | |||
int LIBMTP_Get_Secure_Time(LIBMTP_mtpdevice_t *, char ** const); | int LIBMTP_Get_Secure_Time(LIBMTP_mtpdevice_t *, char ** const); | |||
int LIBMTP_Get_Device_Certificate(LIBMTP_mtpdevice_t *, char ** const); | int LIBMTP_Get_Device_Certificate(LIBMTP_mtpdevice_t *, char ** const); | |||
int LIBMTP_Get_Supported_Filetypes(LIBMTP_mtpdevice_t *, uint16_t ** const, uint16_t * const); | int LIBMTP_Get_Supported_Filetypes(LIBMTP_mtpdevice_t *, uint16_t ** const, uint16_t * const); | |||
/** | /** | |||
* @} | * @} | |||
* @defgroup files The file management API. | * @defgroup files The file management API. | |||
End of changes. 3 change blocks. | ||||
2 lines changed or deleted | 3 lines changed or added | |||