OXIESEC PANEL
- Current Dir:
/
/
usr
/
include
/
gphoto2
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
10/28/2024 06:50:42 AM
rwxr-xr-x
📄
gphoto2-abilities-list.h
7.67 KB
12/23/2017 12:19:04 PM
rw-r--r--
📄
gphoto2-camera.h
16.91 KB
12/23/2017 12:19:04 PM
rw-r--r--
📄
gphoto2-context.h
4.88 KB
12/23/2017 12:19:04 PM
rw-r--r--
📄
gphoto2-file.h
6.74 KB
12/23/2017 12:19:04 PM
rw-r--r--
📄
gphoto2-filesys.h
14.99 KB
12/23/2017 12:19:04 PM
rw-r--r--
📄
gphoto2-library.h
2.22 KB
12/23/2017 12:19:04 PM
rw-r--r--
📄
gphoto2-list.h
2.86 KB
12/23/2017 12:19:04 PM
rw-r--r--
📄
gphoto2-port-info-list.h
3.71 KB
12/23/2017 12:19:04 PM
rw-r--r--
📄
gphoto2-port-log.h
7.4 KB
12/23/2017 12:19:04 PM
rw-r--r--
📄
gphoto2-port-portability.h
7.08 KB
12/23/2017 12:19:04 PM
rw-r--r--
📄
gphoto2-port-result.h
3.06 KB
12/23/2017 12:19:04 PM
rw-r--r--
📄
gphoto2-port-version.h
1.3 KB
12/23/2017 12:19:04 PM
rw-r--r--
📄
gphoto2-port.h
8.19 KB
12/23/2017 12:19:04 PM
rw-r--r--
📄
gphoto2-result.h
3.98 KB
12/23/2017 12:19:04 PM
rw-r--r--
📄
gphoto2-setting.h
1.12 KB
12/23/2017 12:19:04 PM
rw-r--r--
📄
gphoto2-version.h
1.11 KB
12/23/2017 12:19:04 PM
rw-r--r--
📄
gphoto2-widget.h
4.77 KB
12/23/2017 12:19:04 PM
rw-r--r--
📄
gphoto2.h
1.48 KB
12/23/2017 12:19:04 PM
rw-r--r--
Editing: gphoto2-port-result.h
Close
/** \file gphoto2-port-result.h * * Copyright 2001 Lutz Mueller <lutz@users.sf.net> * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301 USA */ #ifndef __GPHOTO2_PORT_RESULT_H__ #define __GPHOTO2_PORT_RESULT_H__ /* Return values. gphoto2-port should only return values from 0 to -99 */ /** * \brief Everything is OK * * Note that this is also the value 0, and every error is negative (lower). */ #define GP_OK 0 /** * \brief Generic Error */ #define GP_ERROR -1 /** * \brief Bad parameters passed */ #define GP_ERROR_BAD_PARAMETERS -2 /** * \brief Out of memory */ #define GP_ERROR_NO_MEMORY -3 /** * \brief Error in the camera driver */ #define GP_ERROR_LIBRARY -4 /** * \brief Unknown libgphoto2 port passed */ #define GP_ERROR_UNKNOWN_PORT -5 /** * \brief Functionality not supported */ #define GP_ERROR_NOT_SUPPORTED -6 /** * \brief Generic I/O error */ #define GP_ERROR_IO -7 /** * \brief Buffer overflow of internal structure */ #define GP_ERROR_FIXED_LIMIT_EXCEEDED -8 /** * \brief Operation timed out */ #define GP_ERROR_TIMEOUT -10 /** * \brief Serial ports not supported */ #define GP_ERROR_IO_SUPPORTED_SERIAL -20 /** * \brief USB ports not supported */ #define GP_ERROR_IO_SUPPORTED_USB -21 /** * \brief Error initialising I/O */ #define GP_ERROR_IO_INIT -31 /** * \brief I/O during read */ #define GP_ERROR_IO_READ -34 /** * \brief I/O during write */ #define GP_ERROR_IO_WRITE -35 /** * \brief I/O during update of settings */ #define GP_ERROR_IO_UPDATE -37 /** * \brief Specified serial speed not possible. */ #define GP_ERROR_IO_SERIAL_SPEED -41 /** * \brief Error during USB Clear HALT */ #define GP_ERROR_IO_USB_CLEAR_HALT -51 /** * \brief Error when trying to find USB device */ #define GP_ERROR_IO_USB_FIND -52 /** * \brief Error when trying to claim the USB device */ #define GP_ERROR_IO_USB_CLAIM -53 /** * \brief Error when trying to lock the device */ #define GP_ERROR_IO_LOCK -60 /** * \brief Unspecified error when talking to HAL */ #define GP_ERROR_HAL -70 #ifdef __cplusplus extern "C" { #endif /* __cplusplus */ const char *gp_port_result_as_string (int result); #ifdef __cplusplus } #endif /* __cplusplus */ #endif /* __GPHOTO2_PORT_RESULT_H__ */