libmtp.h | libmtp.h | |||
---|---|---|---|---|
skipping to change at line 32 | skipping to change at line 32 | |||
* Free Software Foundation, Inc., 59 Temple Place - Suite 330, | * Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |||
* Boston, MA 02111-1307, USA. | * Boston, MA 02111-1307, USA. | |||
* | * | |||
* <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.3.4 | #define LIBMTP_VERSION 0.3.5 | |||
#define LIBMTP_VERSION_STRING "0.3.4" | #define LIBMTP_VERSION_STRING "0.3.5" | |||
/* 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 578 | skipping to change at line 578 | |||
/** | /** | |||
* @} | * @} | |||
* @defgroup playlists The audio/video playlist management API. | * @defgroup playlists The audio/video playlist management API. | |||
* @{ | * @{ | |||
*/ | */ | |||
LIBMTP_playlist_t *LIBMTP_new_playlist_t(void); | LIBMTP_playlist_t *LIBMTP_new_playlist_t(void); | |||
void LIBMTP_destroy_playlist_t(LIBMTP_playlist_t *); | void LIBMTP_destroy_playlist_t(LIBMTP_playlist_t *); | |||
LIBMTP_playlist_t *LIBMTP_Get_Playlist_List(LIBMTP_mtpdevice_t *); | LIBMTP_playlist_t *LIBMTP_Get_Playlist_List(LIBMTP_mtpdevice_t *); | |||
LIBMTP_playlist_t *LIBMTP_Get_Playlist(LIBMTP_mtpdevice_t *, uint32_t const ); | LIBMTP_playlist_t *LIBMTP_Get_Playlist(LIBMTP_mtpdevice_t *, uint32_t const ); | |||
int LIBMTP_Create_New_Playlist(LIBMTP_mtpdevice_t *, LIBMTP_playlist_t * co nst); | int LIBMTP_Create_New_Playlist(LIBMTP_mtpdevice_t *, LIBMTP_playlist_t * co nst); | |||
int LIBMTP_Update_Playlist(LIBMTP_mtpdevice_t *, LIBMTP_playlist_t const * const); | int LIBMTP_Update_Playlist(LIBMTP_mtpdevice_t *, LIBMTP_playlist_t * const) ; | |||
int LIBMTP_Set_Playlist_Name(LIBMTP_mtpdevice_t *, LIBMTP_playlist_t *, con st char *); | int LIBMTP_Set_Playlist_Name(LIBMTP_mtpdevice_t *, LIBMTP_playlist_t *, con st char *); | |||
/** | /** | |||
* @} | * @} | |||
* @defgroup albums The audio/video album management API. | * @defgroup albums The audio/video album management API. | |||
* @{ | * @{ | |||
*/ | */ | |||
LIBMTP_album_t *LIBMTP_new_album_t(void); | LIBMTP_album_t *LIBMTP_new_album_t(void); | |||
void LIBMTP_destroy_album_t(LIBMTP_album_t *); | void LIBMTP_destroy_album_t(LIBMTP_album_t *); | |||
LIBMTP_album_t *LIBMTP_Get_Album_List(LIBMTP_mtpdevice_t *); | LIBMTP_album_t *LIBMTP_Get_Album_List(LIBMTP_mtpdevice_t *); | |||
End of changes. 2 change blocks. | ||||
3 lines changed or deleted | 3 lines changed or added | |||