-
Notifications
You must be signed in to change notification settings - Fork 39
/
pslr_scsi.h
81 lines (65 loc) · 2.57 KB
/
pslr_scsi.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/*
pkTriggerCord
Copyright (C) 2011-2019 Andras Salamon <[email protected]>
Remote control of Pentax DSLR cameras.
based on:
PK-Remote
Remote control of Pentax DSLR cameras.
Copyright (C) 2008 Pontus Lidman <[email protected]>
This program 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 3 of the License, or
(at your option) any later version.
This program 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 General Public License
and GNU Lesser General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef PSLR_SCSI_H
#define PSLR_SCSI_H
#include <stdint.h>
#include <string.h>
#include <stdbool.h>
#include <stdio.h>
#ifdef RAD10
#include <windows.h>
#endif
#define CHECK(x) do { \
int __r; \
__r = (x); \
if (__r != PSLR_OK) { \
pslr_write_log(PSLR_ERROR, "%s:%d:%s failed: %d\n", __FILE__, __LINE__, #x, __r); \
return __r; \
} \
} while (0)
typedef enum {
PSLR_OK = 0,
PSLR_DEVICE_ERROR,
PSLR_SCSI_ERROR,
PSLR_COMMAND_ERROR,
PSLR_READ_ERROR,
PSLR_NO_MEMORY,
PSLR_PARAM, /* Invalid parameters to API */
PSLR_ERROR_MAX
} pslr_result;
/* This also could be used to specify FDTYPE HANDLE for Win32, but this seems tricky with includes */
#ifdef LIBGPHOTO2
typedef struct _GPPort GPPort;
#define FDTYPE GPPort*
#else
/* classic UNIX style handle */
#define FDTYPE int
#endif
int scsi_read(FDTYPE sg_fd, uint8_t *cmd, uint32_t cmdLen,
uint8_t *buf, uint32_t bufLen);
int scsi_write(FDTYPE sg_fd, uint8_t *cmd, uint32_t cmdLen,
uint8_t *buf, uint32_t bufLen);
char **get_drives(int *drive_num);
pslr_result get_drive_info(char* drive_name, FDTYPE* device,
char* vendor_id, int vendor_id_size_max,
char* product_id, int product_id_size_max);
void close_drive(FDTYPE *device);
#endif