libgphoto2 photo camera library (libgphoto2) API 2.5.11
gphoto2-port-info-list.h
Go to the documentation of this file.
1
24#ifndef __GPHOTO2_PORT_INFO_LIST_H__
25#define __GPHOTO2_PORT_INFO_LIST_H__
26
34typedef enum {
36 GP_PORT_SERIAL = 1 << 0,
37 GP_PORT_USB = 1 << 2,
38 GP_PORT_DISK = 1 << 3,
39 GP_PORT_PTPIP = 1 << 4,
41 GP_PORT_USB_SCSI = 1 << 6
43
53struct _GPPortInfo;
54typedef struct _GPPortInfo *GPPortInfo;
55
57
58#ifdef __cplusplus
59extern "C" {
60#endif /* __cplusplus */
61
62#ifdef _GPHOTO2_INTERNAL_CODE
64extern const StringFlagItem gpi_gphoto_port_type_map[];
65#endif
66
68int gp_port_info_get_name (GPPortInfo info, char **name);
69int gp_port_info_set_name (GPPortInfo info, const char *name);
70int gp_port_info_get_path (GPPortInfo info, char **path);
71int gp_port_info_set_path (GPPortInfo info, const char *path);
74int gp_port_info_get_library_filename (GPPortInfo info, char **lib);
75int gp_port_info_set_library_filename (GPPortInfo info, char *lib);
76
77/* Internals are private */
78typedef struct _GPPortInfoList GPPortInfoList;
79
82
84
86
88
89int gp_port_info_list_lookup_path (GPPortInfoList *list, const char *path);
90int gp_port_info_list_lookup_name (GPPortInfoList *list, const char *name);
91
93
94const char *gp_port_message_codeset (const char*);
95
103#ifdef _GPHOTO2_INTERNAL_CODE
104#define IOLIBDIR_ENV "IOLIBS"
105#endif /* _GPHOTO2_INTERNAL_CODE */
106
107
108#ifdef __cplusplus
109}
110#endif /* __cplusplus */
111
112#endif /* __GPHOTO2_PORT_INFO_LIST_H__ */
GPPortType
The gphoto port type.
Definition gphoto2-port-info-list.h:34
@ GP_PORT_USB_SCSI
USB Mass Storage raw SCSI port.
Definition gphoto2-port-info-list.h:41
@ GP_PORT_PTPIP
PTP/IP port.
Definition gphoto2-port-info-list.h:39
@ GP_PORT_NONE
No specific type associated.
Definition gphoto2-port-info-list.h:35
@ GP_PORT_DISK
Disk / local mountpoint port.
Definition gphoto2-port-info-list.h:38
@ GP_PORT_USB_DISK_DIRECT
Direct IO to an usb mass storage device.
Definition gphoto2-port-info-list.h:40
@ GP_PORT_USB
USB port.
Definition gphoto2-port-info-list.h:37
@ GP_PORT_SERIAL
Serial port.
Definition gphoto2-port-info-list.h:36
int gp_port_info_set_name(GPPortInfo info, const char *name)
Set name of a specific port entry.
Definition gphoto2-port-info-list.c:506
int gp_port_info_set_type(GPPortInfo info, const GPPortType type)
Set type of a specific port entry.
Definition gphoto2-port-info-list.c:568
int gp_port_info_list_count(GPPortInfoList *list)
Number of ports in the list.
Definition gphoto2-port-info-list.c:303
int gp_port_info_list_new(GPPortInfoList **list)
Create a new GPPortInfoList.
Definition gphoto2-port-info-list.c:109
int gp_port_info_list_lookup_name(GPPortInfoList *list, const char *name)
Look up a name in the list.
Definition gphoto2-port-info-list.c:429
int gp_port_info_set_path(GPPortInfo info, const char *path)
Set path of a specific port entry.
Definition gphoto2-port-info-list.c:537
const char * gp_port_message_codeset(const char *)
Specify codeset for translations.
Definition gphoto2-port-info-list.c:94
int gp_port_info_list_load(GPPortInfoList *list)
Load system ports.
Definition gphoto2-port-info-list.c:272
int gp_port_info_get_type(GPPortInfo info, GPPortType *type)
Get type of a specific port entry.
Definition gphoto2-port-info-list.c:552
int gp_port_info_list_get_info(GPPortInfoList *list, int n, GPPortInfo *info)
Get port information of specific entry.
Definition gphoto2-port-info-list.c:458
int gp_port_info_new(GPPortInfo *info)
Create a new portinfo.
Definition gphoto2-port-info-list.c:583
int gp_port_info_get_path(GPPortInfo info, char **path)
Get path of a specific port entry.
Definition gphoto2-port-info-list.c:521
int gp_port_info_get_name(GPPortInfo info, char **name)
Get name of a specific port entry.
Definition gphoto2-port-info-list.c:490
int gp_port_info_list_free(GPPortInfoList *list)
Free a GPPortInfo list.
Definition gphoto2-port-info-list.c:133
int gp_port_info_list_append(GPPortInfoList *list, GPPortInfo info)
Append a portinfo to the port information list.
Definition gphoto2-port-info-list.c:175
int gp_port_info_list_lookup_path(GPPortInfoList *list, const char *path)
Lookup a specific path in the list.
Definition gphoto2-port-info-list.c:334
Definition gphoto2-port-info-list.c:72
Definition gphoto2-port-info.h:32
char * path
The path of this port (usb:001,023)
Definition gphoto2-port-info.h:35
GPPortType type
The type of this port.
Definition gphoto2-port-info.h:33
char * name
The name of this port (usb:)
Definition gphoto2-port-info.h:34