libmtp  1.1.4
ptp.h
1 /* ptp.h
2  *
3  * Copyright (C) 2001 Mariusz Woloszyn <emsi@ipartners.pl>
4  * Copyright (C) 2003-2012 Marcus Meissner <marcus@jet.franken.de>
5  * Copyright (C) 2006-2008 Linus Walleij <triad@df.lth.se>
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this library; if not, write to the
19  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20  * Boston, MA 02111-1307, USA.
21  */
22 
23 #ifndef __PTP_H__
24 #define __PTP_H__
25 
26 #include <stdarg.h>
27 #include <time.h>
28 #ifdef HAVE_ICONV
29 #include <iconv.h>
30 #endif
31 #include "gphoto2-endian.h"
32 #include "device-flags.h"
33 
34 #ifdef __cplusplus
35 extern "C" {
36 #endif /* __cplusplus */
37 
38 /* PTP datalayer byteorder */
39 
40 #define PTP_DL_BE 0xF0
41 #define PTP_DL_LE 0x0F
42 
43 /* USB interface class */
44 #ifndef USB_CLASS_PTP
45 #define USB_CLASS_PTP 6
46 #endif
47 
48 /* PTP request/response/event general PTP container (transport independent) */
49 
50 struct _PTPContainer {
51  uint16_t Code;
52  uint32_t SessionID;
53  uint32_t Transaction_ID;
54  /* params may be of any type of size less or equal to uint32_t */
55  uint32_t Param1;
56  uint32_t Param2;
57  uint32_t Param3;
58  /* events can only have three parameters */
59  uint32_t Param4;
60  uint32_t Param5;
61  /* the number of meaningfull parameters */
62  uint8_t Nparam;
63 };
64 typedef struct _PTPContainer PTPContainer;
65 
66 /* PTP USB Bulk-Pipe container */
67 /* USB bulk max packet length for high speed endpoints */
68 /* The max packet is set to 512 bytes. The spec says
69  * "end of data transfers are signaled by short packets or NULL
70  * packets". It never says anything about 512, but current
71  * implementations seem to have chosen this value, which also
72  * happens to be the size of an USB 2.0 HS endpoint, even though
73  * this is not necessary.
74  *
75  * Previously we had this as 4096 for MTP devices. We have found
76  * and fixed the bugs that made this necessary and it can be 512 again.
77  */
78 #define PTP_USB_BULK_HS_MAX_PACKET_LEN_WRITE 512
79 #define PTP_USB_BULK_HS_MAX_PACKET_LEN_READ 512
80 #define PTP_USB_BULK_HDR_LEN (2*sizeof(uint32_t)+2*sizeof(uint16_t))
81 #define PTP_USB_BULK_PAYLOAD_LEN_WRITE (PTP_USB_BULK_HS_MAX_PACKET_LEN_WRITE-PTP_USB_BULK_HDR_LEN)
82 #define PTP_USB_BULK_PAYLOAD_LEN_READ (PTP_USB_BULK_HS_MAX_PACKET_LEN_READ-PTP_USB_BULK_HDR_LEN)
83 #define PTP_USB_BULK_REQ_LEN (PTP_USB_BULK_HDR_LEN+5*sizeof(uint32_t))
84 
86  uint32_t length;
87  uint16_t type;
88  uint16_t code;
89  uint32_t trans_id;
90  union {
91  struct {
92  uint32_t param1;
93  uint32_t param2;
94  uint32_t param3;
95  uint32_t param4;
96  uint32_t param5;
97  } params;
98  /* this must be set to the maximum of PTP_USB_BULK_PAYLOAD_LEN_WRITE
99  * and PTP_USB_BULK_PAYLOAD_LEN_READ */
100  unsigned char data[PTP_USB_BULK_PAYLOAD_LEN_READ];
101  } payload;
102 };
104 
105 /* PTP USB Asynchronous Event Interrupt Data Format */
107  uint32_t length;
108  uint16_t type;
109  uint16_t code;
110  uint32_t trans_id;
111  uint32_t param1;
112  uint32_t param2;
113  uint32_t param3;
114 };
116 
118  uint32_t oid;
119  char *str;
120 };
122 
123 /* USB container types */
124 
125 #define PTP_USB_CONTAINER_UNDEFINED 0x0000
126 #define PTP_USB_CONTAINER_COMMAND 0x0001
127 #define PTP_USB_CONTAINER_DATA 0x0002
128 #define PTP_USB_CONTAINER_RESPONSE 0x0003
129 #define PTP_USB_CONTAINER_EVENT 0x0004
130 
131 /* PTP/IP definitions */
132 #define PTPIP_INIT_COMMAND_REQUEST 1
133 #define PTPIP_INIT_COMMAND_ACK 2
134 #define PTPIP_INIT_EVENT_REQUEST 3
135 #define PTPIP_INIT_EVENT_ACK 4
136 #define PTPIP_INIT_FAIL 5
137 #define PTPIP_CMD_REQUEST 6
138 #define PTPIP_CMD_RESPONSE 7
139 #define PTPIP_EVENT 8
140 #define PTPIP_START_DATA_PACKET 9
141 #define PTPIP_DATA_PACKET 10
142 #define PTPIP_CANCEL_TRANSACTION 11
143 #define PTPIP_END_DATA_PACKET 12
144 #define PTPIP_PING 13
145 #define PTPIP_PONG 14
146 
147 struct _PTPIPHeader {
148  uint32_t length;
149  uint32_t type;
150 };
151 typedef struct _PTPIPHeader PTPIPHeader;
152 
153 /* Vendor IDs */
154 #define PTP_VENDOR_EASTMAN_KODAK 0x00000001
155 #define PTP_VENDOR_SEIKO_EPSON 0x00000002
156 #define PTP_VENDOR_AGILENT 0x00000003
157 #define PTP_VENDOR_POLAROID 0x00000004
158 #define PTP_VENDOR_AGFA_GEVAERT 0x00000005
159 #define PTP_VENDOR_MICROSOFT 0x00000006
160 #define PTP_VENDOR_EQUINOX 0x00000007
161 #define PTP_VENDOR_VIEWQUEST 0x00000008
162 #define PTP_VENDOR_STMICROELECTRONICS 0x00000009
163 #define PTP_VENDOR_NIKON 0x0000000A
164 #define PTP_VENDOR_CANON 0x0000000B
165 #define PTP_VENDOR_FOTONATION 0x0000000C
166 #define PTP_VENDOR_PENTAX 0x0000000D
167 #define PTP_VENDOR_FUJI 0x0000000E
168 /* Vendor extension ID used for MTP (occasionaly, usualy 6 is used) */
169 #define PTP_VENDOR_MTP 0xffffffff
170 
171 /* Operation Codes */
172 
173 /* PTP v1.0 operation codes */
174 #define PTP_OC_Undefined 0x1000
175 #define PTP_OC_GetDeviceInfo 0x1001
176 #define PTP_OC_OpenSession 0x1002
177 #define PTP_OC_CloseSession 0x1003
178 #define PTP_OC_GetStorageIDs 0x1004
179 #define PTP_OC_GetStorageInfo 0x1005
180 #define PTP_OC_GetNumObjects 0x1006
181 #define PTP_OC_GetObjectHandles 0x1007
182 #define PTP_OC_GetObjectInfo 0x1008
183 #define PTP_OC_GetObject 0x1009
184 #define PTP_OC_GetThumb 0x100A
185 #define PTP_OC_DeleteObject 0x100B
186 #define PTP_OC_SendObjectInfo 0x100C
187 #define PTP_OC_SendObject 0x100D
188 #define PTP_OC_InitiateCapture 0x100E
189 #define PTP_OC_FormatStore 0x100F
190 #define PTP_OC_ResetDevice 0x1010
191 #define PTP_OC_SelfTest 0x1011
192 #define PTP_OC_SetObjectProtection 0x1012
193 #define PTP_OC_PowerDown 0x1013
194 #define PTP_OC_GetDevicePropDesc 0x1014
195 #define PTP_OC_GetDevicePropValue 0x1015
196 #define PTP_OC_SetDevicePropValue 0x1016
197 #define PTP_OC_ResetDevicePropValue 0x1017
198 #define PTP_OC_TerminateOpenCapture 0x1018
199 #define PTP_OC_MoveObject 0x1019
200 #define PTP_OC_CopyObject 0x101A
201 #define PTP_OC_GetPartialObject 0x101B
202 #define PTP_OC_InitiateOpenCapture 0x101C
203 /* PTP v1.1 operation codes */
204 #define PTP_OC_StartEnumHandles 0x101D
205 #define PTP_OC_EnumHandles 0x101E
206 #define PTP_OC_StopEnumHandles 0x101F
207 #define PTP_OC_GetVendorExtensionMaps 0x1020
208 #define PTP_OC_GetVendorDeviceInfo 0x1021
209 #define PTP_OC_GetResizedImageObject 0x1022
210 #define PTP_OC_GetFilesystemManifest 0x1023
211 #define PTP_OC_GetStreamInfo 0x1024
212 #define PTP_OC_GetStream 0x1025
213 
214 /* Eastman Kodak extension Operation Codes */
215 #define PTP_OC_EK_GetSerial 0x9003
216 #define PTP_OC_EK_SetSerial 0x9004
217 #define PTP_OC_EK_SendFileObjectInfo 0x9005
218 #define PTP_OC_EK_SendFileObject 0x9006
219 #define PTP_OC_EK_SetText 0x9008
220 
221 /* Canon extension Operation Codes */
222 #define PTP_OC_CANON_GetPartialObjectInfo 0x9001
223 /* 9002 - sends 2 uint32, nothing back */
224 #define PTP_OC_CANON_SetObjectArchive 0x9002
225 #define PTP_OC_CANON_KeepDeviceOn 0x9003
226 #define PTP_OC_CANON_LockDeviceUI 0x9004
227 #define PTP_OC_CANON_UnlockDeviceUI 0x9005
228 #define PTP_OC_CANON_GetObjectHandleByName 0x9006
229 /* no 9007 observed yet */
230 #define PTP_OC_CANON_InitiateReleaseControl 0x9008
231 #define PTP_OC_CANON_TerminateReleaseControl 0x9009
232 #define PTP_OC_CANON_TerminatePlaybackMode 0x900A
233 #define PTP_OC_CANON_ViewfinderOn 0x900B
234 #define PTP_OC_CANON_ViewfinderOff 0x900C
235 #define PTP_OC_CANON_DoAeAfAwb 0x900D
236 
237 /* 900e - send nothing, gets 5 uint16t in 32bit entities back in 20byte datablob */
238 #define PTP_OC_CANON_GetCustomizeSpec 0x900E
239 #define PTP_OC_CANON_GetCustomizeItemInfo 0x900F
240 #define PTP_OC_CANON_GetCustomizeData 0x9010
241 #define PTP_OC_CANON_SetCustomizeData 0x9011
242 #define PTP_OC_CANON_GetCaptureStatus 0x9012
243 #define PTP_OC_CANON_CheckEvent 0x9013
244 #define PTP_OC_CANON_FocusLock 0x9014
245 #define PTP_OC_CANON_FocusUnlock 0x9015
246 #define PTP_OC_CANON_GetLocalReleaseParam 0x9016
247 #define PTP_OC_CANON_SetLocalReleaseParam 0x9017
248 #define PTP_OC_CANON_AskAboutPcEvf 0x9018
249 #define PTP_OC_CANON_SendPartialObject 0x9019
250 #define PTP_OC_CANON_InitiateCaptureInMemory 0x901A
251 #define PTP_OC_CANON_GetPartialObjectEx 0x901B
252 #define PTP_OC_CANON_SetObjectTime 0x901C
253 #define PTP_OC_CANON_GetViewfinderImage 0x901D
254 #define PTP_OC_CANON_GetObjectAttributes 0x901E
255 #define PTP_OC_CANON_ChangeUSBProtocol 0x901F
256 #define PTP_OC_CANON_GetChanges 0x9020
257 #define PTP_OC_CANON_GetObjectInfoEx 0x9021
258 #define PTP_OC_CANON_InitiateDirectTransfer 0x9022
259 #define PTP_OC_CANON_TerminateDirectTransfer 0x9023
260 #define PTP_OC_CANON_SendObjectInfoByPath 0x9024
261 #define PTP_OC_CANON_SendObjectByPath 0x9025
262 #define PTP_OC_CANON_InitiateDirectTansferEx 0x9026
263 #define PTP_OC_CANON_GetAncillaryObjectHandles 0x9027
264 #define PTP_OC_CANON_GetTreeInfo 0x9028
265 #define PTP_OC_CANON_GetTreeSize 0x9029
266 #define PTP_OC_CANON_NotifyProgress 0x902A
267 #define PTP_OC_CANON_NotifyCancelAccepted 0x902B
268 /* 902c: no parms, read 3 uint32 in data, no response parms */
269 #define PTP_OC_CANON_902C 0x902C
270 #define PTP_OC_CANON_GetDirectory 0x902D
271 
272 #define PTP_OC_CANON_SetPairingInfo 0x9030
273 #define PTP_OC_CANON_GetPairingInfo 0x9031
274 #define PTP_OC_CANON_DeletePairingInfo 0x9032
275 #define PTP_OC_CANON_GetMACAddress 0x9033
276 /* 9034: 1 param, no parms returned */
277 #define PTP_OC_CANON_SetDisplayMonitor 0x9034
278 #define PTP_OC_CANON_PairingComplete 0x9035
279 #define PTP_OC_CANON_GetWirelessMAXChannel 0x9036
280 
281 /* 9101: no args, 8 byte data (01 00 00 00 00 00 00 00), no resp data. */
282 #define PTP_OC_CANON_EOS_GetStorageIDs 0x9101
283 /* 9102: 1 arg (0)
284  * 0x28 bytes of data:
285  00000000: 34 00 00 00 02 00 02 91 0a 00 00 00 04 00 03 00
286  00000010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
287  00000020: 00 00 ff ff ff ff 03 43 00 46 00 00 00 03 41 00
288  00000030: 3a 00 00 00
289  * no resp args
290  */
291 #define PTP_OC_CANON_EOS_GetStorageInfo 0x9102
292 #define PTP_OC_CANON_EOS_GetObjectInfo 0x9103
293 #define PTP_OC_CANON_EOS_GetObject 0x9104
294 #define PTP_OC_CANON_EOS_DeleteObject 0x9105
295 #define PTP_OC_CANON_EOS_FormatStore 0x9106
296 #define PTP_OC_CANON_EOS_GetPartialObject 0x9107
297 #define PTP_OC_CANON_EOS_GetDeviceInfoEx 0x9108
298 
299 /* sample1:
300  * 3 cmdargs: 1,0xffffffff,00 00 10 00;
301  * data:
302  00000000: 48 00 00 00 02 00 09 91 12 00 00 00 01 00 00 00
303  00000010: 38 00 00 00 00 00 00 30 01 00 00 00 01 30 00 00
304  00000020: 01 00 00 00 10 00 00 00 00 00 00 00 00 00 00 20
305  00000030: 00 00 00 30 44 43 49 4d 00 00 00 00 00 00 00 00 DCIM
306  00000040: 00 00 00 00 cc c3 01 46
307  * 2 respargs: 0x0, 0x3c
308  *
309  * sample2:
310  *
311  00000000: 18 00 00 00 01 00 09 91 15 00 00 00 01 00 00 00
312  00000010: 00 00 00 30 00 00 10 00
313 
314  00000000: 48 00 00 00 02 00 09 91 15 00 00 00 01 00 00 00
315  00000010: 38 00 00 00 00 00 9c 33 01 00 00 00 01 30 00 00
316  00000020: 01 00 00 00 10 00 00 00 00 00 00 00 00 00 00 30
317  00000030: 00 00 9c 33 32 33 31 43 41 4e 4f 4e 00 00 00 00 231CANON
318  00000040: 00 00 00 00 cc c3 01 46
319 
320  */
321 #define PTP_OC_CANON_EOS_GetObjectInfoEx 0x9109
322 #define PTP_OC_CANON_EOS_GetThumbEx 0x910A
323 #define PTP_OC_CANON_EOS_SendPartialObject 0x910B
324 #define PTP_OC_CANON_EOS_SetObjectAttributes 0x910C
325 #define PTP_OC_CANON_EOS_GetObjectTime 0x910D
326 #define PTP_OC_CANON_EOS_SetObjectTime 0x910E
327 
328 /* 910f: no args, no data, 1 response arg (0). */
329 #define PTP_OC_CANON_EOS_RemoteRelease 0x910F
330 /* Marcus: looks more like "Set DeviceProperty" in the trace.
331  *
332  * no cmd args
333  * data phase (0xc, 0xd11c, 0x1)
334  * no resp args
335  */
336 #define PTP_OC_CANON_EOS_SetDevicePropValueEx 0x9110
337 #define PTP_OC_CANON_EOS_GetRemoteMode 0x9113
338 /* 9114: 1 arg (0x1), no data, no resp data. */
339 #define PTP_OC_CANON_EOS_SetRemoteMode 0x9114
340 /* 9115: 1 arg (0x1), no data, no resp data. */
341 #define PTP_OC_CANON_EOS_SetEventMode 0x9115
342 /* 9116: no args, data phase, no resp data. */
343 #define PTP_OC_CANON_EOS_GetEvent 0x9116
344 #define PTP_OC_CANON_EOS_TransferComplete 0x9117
345 #define PTP_OC_CANON_EOS_CancelTransfer 0x9118
346 #define PTP_OC_CANON_EOS_ResetTransfer 0x9119
347 
348 /* 911a: 3 args (0xfffffff7, 0x00001000, 0x00000001), no data, no resp data. */
349 /* 911a: 3 args (0x001dfc60, 0x00001000, 0x00000001), no data, no resp data. */
350 #define PTP_OC_CANON_EOS_PCHDDCapacity 0x911A
351 
352 /* 911b: no cmd args, no data, no resp args */
353 #define PTP_OC_CANON_EOS_SetUILock 0x911B
354 /* 911c: no cmd args, no data, no resp args */
355 #define PTP_OC_CANON_EOS_ResetUILock 0x911C
356 #define PTP_OC_CANON_EOS_KeepDeviceOn 0x911D
357 #define PTP_OC_CANON_EOS_SetNullPacketMode 0x911E
358 #define PTP_OC_CANON_EOS_UpdateFirmware 0x911F
359 #define PTP_OC_CANON_EOS_TransferCompleteDT 0x9120
360 #define PTP_OC_CANON_EOS_CancelTransferDT 0x9121
361 #define PTP_OC_CANON_EOS_SetWftProfile 0x9122
362 #define PTP_OC_CANON_EOS_GetWftProfile 0x9122
363 #define PTP_OC_CANON_EOS_SetProfileToWft 0x9124
364 #define PTP_OC_CANON_EOS_BulbStart 0x9125
365 #define PTP_OC_CANON_EOS_BulbEnd 0x9126
366 #define PTP_OC_CANON_EOS_RequestDevicePropValue 0x9127
367 
368 /* 0x9128 args (0x1/0x2, 0x0), no data, no resp args */
369 #define PTP_OC_CANON_EOS_RemoteReleaseOn 0x9128
370 /* 0x9129 args (0x1/0x2), no data, no resp args */
371 #define PTP_OC_CANON_EOS_RemoteReleaseOff 0x9129
372 
373 #define PTP_OC_CANON_EOS_InitiateViewfinder 0x9151
374 #define PTP_OC_CANON_EOS_TerminateViewfinder 0x9152
375 #define PTP_OC_CANON_EOS_GetViewFinderData 0x9153
376 #define PTP_OC_CANON_EOS_DoAf 0x9154
377 #define PTP_OC_CANON_EOS_DriveLens 0x9155
378 #define PTP_OC_CANON_EOS_DepthOfFieldPreview 0x9156
379 #define PTP_OC_CANON_EOS_ClickWB 0x9157
380 #define PTP_OC_CANON_EOS_Zoom 0x9158
381 #define PTP_OC_CANON_EOS_ZoomPosition 0x9159
382 #define PTP_OC_CANON_EOS_SetLiveAfFrame 0x915a
383 #define PTP_OC_CANON_EOS_AfCancel 0x9160
384 #define PTP_OC_CANON_EOS_FAPIMessageTX 0x91FE
385 #define PTP_OC_CANON_EOS_FAPIMessageRX 0x91FF
386 
387 /* Nikon extension Operation Codes */
388 #define PTP_OC_NIKON_GetProfileAllData 0x9006
389 #define PTP_OC_NIKON_SendProfileData 0x9007
390 #define PTP_OC_NIKON_DeleteProfile 0x9008
391 #define PTP_OC_NIKON_SetProfileData 0x9009
392 #define PTP_OC_NIKON_AdvancedTransfer 0x9010
393 #define PTP_OC_NIKON_GetFileInfoInBlock 0x9011
394 #define PTP_OC_NIKON_Capture 0x90C0 /* 1 param, no data */
395 #define PTP_OC_NIKON_AfDrive 0x90C1 /* no params, no data */
396 #define PTP_OC_NIKON_SetControlMode 0x90C2 /* 1 param, no data */
397 #define PTP_OC_NIKON_DelImageSDRAM 0x90C3 /* no params, no data */
398 #define PTP_OC_NIKON_GetLargeThumb 0x90C4
399 #define PTP_OC_NIKON_CurveDownload 0x90C5 /* 1 param, data in */
400 #define PTP_OC_NIKON_CurveUpload 0x90C6 /* 1 param, data out */
401 #define PTP_OC_NIKON_CheckEvent 0x90C7 /* no params, data in */
402 #define PTP_OC_NIKON_DeviceReady 0x90C8 /* no params, no data */
403 #define PTP_OC_NIKON_SetPreWBData 0x90C9 /* 3 params, data out */
404 #define PTP_OC_NIKON_GetVendorPropCodes 0x90CA /* 0 params, data in */
405 #define PTP_OC_NIKON_AfCaptureSDRAM 0x90CB /* no params, no data */
406 #define PTP_OC_NIKON_GetPictCtrlData 0x90CC
407 #define PTP_OC_NIKON_SetPictCtrlData 0x90CD
408 #define PTP_OC_NIKON_DelCstPicCtrl 0x90CE
409 #define PTP_OC_NIKON_GetPicCtrlCapability 0x90CF
410 
411 /* Nikon Liveview stuff */
412 #define PTP_OC_NIKON_GetPreviewImg 0x9200
413 #define PTP_OC_NIKON_StartLiveView 0x9201
414 #define PTP_OC_NIKON_EndLiveView 0x9202
415 #define PTP_OC_NIKON_GetLiveViewImg 0x9203
416 #define PTP_OC_NIKON_MfDrive 0x9204
417 #define PTP_OC_NIKON_ChangeAfArea 0x9205
418 #define PTP_OC_NIKON_AfDriveCancel 0x9206
419 
420 #define PTP_OC_NIKON_GetDevicePTPIPInfo 0x90E0
421 
422 /* Casio EX-F1 (from http://code.google.com/p/exf1ctrl/ ) */
423 #define PTP_OC_CASIO_STILL_START 0x9001
424 #define PTP_OC_CASIO_STILL_STOP 0x9002
425 
426 #define PTP_OC_CASIO_FOCUS 0x9007
427 #define PTP_OC_CASIO_CF_PRESS 0x9009
428 #define PTP_OC_CASIO_CF_RELEASE 0x900A
429 #define PTP_OC_CASIO_GET_OBJECT_INFO 0x900C
430 
431 #define PTP_OC_CASIO_SHUTTER 0x9024
432 #define PTP_OC_CASIO_GET_STILL_HANDLES 0x9027
433 #define PTP_OC_CASIO_STILL_RESET 0x9028
434 #define PTP_OC_CASIO_HALF_PRESS 0x9029
435 #define PTP_OC_CASIO_HALF_RELEASE 0x902A
436 #define PTP_OC_CASIO_CS_PRESS 0x902B
437 #define PTP_OC_CASIO_CS_RELEASE 0x902C
438 
439 #define PTP_OC_CASIO_ZOOM 0x902D
440 #define PTP_OC_CASIO_CZ_PRESS 0x902E
441 #define PTP_OC_CASIO_CZ_RELEASE 0x902F
442 
443 #define PTP_OC_CASIO_MOVIE_START 0x9041
444 #define PTP_OC_CASIO_MOVIE_STOP 0x9042
445 #define PTP_OC_CASIO_MOVIE_PRESS 0x9043
446 #define PTP_OC_CASIO_MOVIE_RELEASE 0x9044
447 #define PTP_OC_CASIO_GET_MOVIE_HANDLES 0x9045
448 #define PTP_OC_CASIO_MOVIE_RESET 0x9046
449 
450 #define PTP_OC_CASIO_GET_OBJECT 0x9025
451 #define PTP_OC_CASIO_GET_THUMBNAIL 0x9026
452 
453 /* Microsoft / MTP extension codes */
454 
455 #define PTP_OC_MTP_GetObjectPropsSupported 0x9801
456 #define PTP_OC_MTP_GetObjectPropDesc 0x9802
457 #define PTP_OC_MTP_GetObjectPropValue 0x9803
458 #define PTP_OC_MTP_SetObjectPropValue 0x9804
459 #define PTP_OC_MTP_GetObjPropList 0x9805
460 #define PTP_OC_MTP_SetObjPropList 0x9806
461 #define PTP_OC_MTP_GetInterdependendPropdesc 0x9807
462 #define PTP_OC_MTP_SendObjectPropList 0x9808
463 #define PTP_OC_MTP_GetObjectReferences 0x9810
464 #define PTP_OC_MTP_SetObjectReferences 0x9811
465 #define PTP_OC_MTP_UpdateDeviceFirmware 0x9812
466 #define PTP_OC_MTP_Skip 0x9820
467 
468 /*
469  * Windows Media Digital Rights Management for Portable Devices
470  * Extension Codes (microsoft.com/WMDRMPD: 10.1)
471  */
472 #define PTP_OC_MTP_WMDRMPD_GetSecureTimeChallenge 0x9101
473 #define PTP_OC_MTP_WMDRMPD_GetSecureTimeResponse 0x9102
474 #define PTP_OC_MTP_WMDRMPD_SetLicenseResponse 0x9103
475 #define PTP_OC_MTP_WMDRMPD_GetSyncList 0x9104
476 #define PTP_OC_MTP_WMDRMPD_SendMeterChallengeQuery 0x9105
477 #define PTP_OC_MTP_WMDRMPD_GetMeterChallenge 0x9106
478 #define PTP_OC_MTP_WMDRMPD_SetMeterResponse 0x9107
479 #define PTP_OC_MTP_WMDRMPD_CleanDataStore 0x9108
480 #define PTP_OC_MTP_WMDRMPD_GetLicenseState 0x9109
481 #define PTP_OC_MTP_WMDRMPD_SendWMDRMPDCommand 0x910A
482 #define PTP_OC_MTP_WMDRMPD_SendWMDRMPDRequest 0x910B
483 
484 /*
485  * Windows Media Digital Rights Management for Portable Devices
486  * Extension Codes (microsoft.com/WMDRMPD: 10.1)
487  * Below are operations that have no public documented identifier
488  * associated with them "Vendor-defined Command Code"
489  */
490 #define PTP_OC_MTP_WMDRMPD_SendWMDRMPDAppRequest 0x9212
491 #define PTP_OC_MTP_WMDRMPD_GetWMDRMPDAppResponse 0x9213
492 #define PTP_OC_MTP_WMDRMPD_EnableTrustedFilesOperations 0x9214
493 #define PTP_OC_MTP_WMDRMPD_DisableTrustedFilesOperations 0x9215
494 #define PTP_OC_MTP_WMDRMPD_EndTrustedAppSession 0x9216
495 /* ^^^ guess ^^^ */
496 
497 /*
498  * Microsoft Advanced Audio/Video Transfer
499  * Extensions (microsoft.com/AAVT: 1.0)
500  */
501 #define PTP_OC_MTP_AAVT_OpenMediaSession 0x9170
502 #define PTP_OC_MTP_AAVT_CloseMediaSession 0x9171
503 #define PTP_OC_MTP_AAVT_GetNextDataBlock 0x9172
504 #define PTP_OC_MTP_AAVT_SetCurrentTimePosition 0x9173
505 
506 /*
507  * Windows Media Digital Rights Management for Network Devices
508  * Extensions (microsoft.com/WMDRMND: 1.0) MTP/IP?
509  */
510 #define PTP_OC_MTP_WMDRMND_SendRegistrationRequest 0x9180
511 #define PTP_OC_MTP_WMDRMND_GetRegistrationResponse 0x9181
512 #define PTP_OC_MTP_WMDRMND_GetProximityChallenge 0x9182
513 #define PTP_OC_MTP_WMDRMND_SendProximityResponse 0x9183
514 #define PTP_OC_MTP_WMDRMND_SendWMDRMNDLicenseRequest 0x9184
515 #define PTP_OC_MTP_WMDRMND_GetWMDRMNDLicenseResponse 0x9185
516 
517 /*
518  * Windows Media Player Portiable Devices
519  * Extension Codes (microsoft.com/WMPPD: 11.1)
520  */
521 #define PTP_OC_MTP_WMPPD_ReportAddedDeletedItems 0x9201
522 #define PTP_OC_MTP_WMPPD_ReportAcquiredItems 0x9202
523 #define PTP_OC_MTP_WMPPD_PlaylistObjectPref 0x9203
524 
525 /*
526  * Undocumented Zune Operation Codes
527  * maybe related to WMPPD extension set?
528  */
529 #define PTP_OC_MTP_ZUNE_GETUNDEFINED001 0x9204
530 
531 /* WiFi Provisioning MTP Extension Codes (microsoft.com/WPDWCN: 1.0) */
532 #define PTP_OC_MTP_WPDWCN_ProcessWFCObject 0x9122
533 
534 
535 /* Olympus E series commands */
536 #define PTP_OC_OLYMPUS_Capture 0x9101
537 #define PTP_OC_OLYMPUS_SelfCleaning 0x9103
538 #define PTP_OC_OLYMPUS_SetRGBGain 0x9106
539 #define PTP_OC_OLYMPUS_SetPresetMode 0x9107
540 #define PTP_OC_OLYMPUS_SetWBBiasAll 0x9108
541 #define PTP_OC_OLYMPUS_GetCameraControlMode 0x910a
542 #define PTP_OC_OLYMPUS_SetCameraControlMode 0x910b
543 #define PTP_OC_OLYMPUS_SetWBRGBGain 0x910c
544 #define PTP_OC_OLYMPUS_GetDeviceInfo 0x9301
545 #define PTP_OC_OLYMPUS_Init1 0x9302
546 #define PTP_OC_OLYMPUS_SetDateTime 0x9402
547 #define PTP_OC_OLYMPUS_GetDateTime 0x9482
548 #define PTP_OC_OLYMPUS_SetCameraID 0x9501
549 #define PTP_OC_OLYMPUS_GetCameraID 0x9581
550 
551 /* Proprietary vendor extension operations mask */
552 #define PTP_OC_EXTENSION_MASK 0xF000
553 #define PTP_OC_EXTENSION 0x9000
554 
555 /* Response Codes */
556 
557 /* PTP v1.0 response codes */
558 #define PTP_RC_Undefined 0x2000
559 #define PTP_RC_OK 0x2001
560 #define PTP_RC_GeneralError 0x2002
561 #define PTP_RC_SessionNotOpen 0x2003
562 #define PTP_RC_InvalidTransactionID 0x2004
563 #define PTP_RC_OperationNotSupported 0x2005
564 #define PTP_RC_ParameterNotSupported 0x2006
565 #define PTP_RC_IncompleteTransfer 0x2007
566 #define PTP_RC_InvalidStorageId 0x2008
567 #define PTP_RC_InvalidObjectHandle 0x2009
568 #define PTP_RC_DevicePropNotSupported 0x200A
569 #define PTP_RC_InvalidObjectFormatCode 0x200B
570 #define PTP_RC_StoreFull 0x200C
571 #define PTP_RC_ObjectWriteProtected 0x200D
572 #define PTP_RC_StoreReadOnly 0x200E
573 #define PTP_RC_AccessDenied 0x200F
574 #define PTP_RC_NoThumbnailPresent 0x2010
575 #define PTP_RC_SelfTestFailed 0x2011
576 #define PTP_RC_PartialDeletion 0x2012
577 #define PTP_RC_StoreNotAvailable 0x2013
578 #define PTP_RC_SpecificationByFormatUnsupported 0x2014
579 #define PTP_RC_NoValidObjectInfo 0x2015
580 #define PTP_RC_InvalidCodeFormat 0x2016
581 #define PTP_RC_UnknownVendorCode 0x2017
582 #define PTP_RC_CaptureAlreadyTerminated 0x2018
583 #define PTP_RC_DeviceBusy 0x2019
584 #define PTP_RC_InvalidParentObject 0x201A
585 #define PTP_RC_InvalidDevicePropFormat 0x201B
586 #define PTP_RC_InvalidDevicePropValue 0x201C
587 #define PTP_RC_InvalidParameter 0x201D
588 #define PTP_RC_SessionAlreadyOpened 0x201E
589 #define PTP_RC_TransactionCanceled 0x201F
590 #define PTP_RC_SpecificationOfDestinationUnsupported 0x2020
591 /* PTP v1.1 response codes */
592 #define PTP_RC_InvalidEnumHandle 0x2021
593 #define PTP_RC_NoStreamEnabled 0x2022
594 #define PTP_RC_InvalidDataSet 0x2023
595 
596 /* Eastman Kodak extension Response Codes */
597 #define PTP_RC_EK_FilenameRequired 0xA001
598 #define PTP_RC_EK_FilenameConflicts 0xA002
599 #define PTP_RC_EK_FilenameInvalid 0xA003
600 
601 /* Nikon specific response codes */
602 #define PTP_RC_NIKON_HardwareError 0xA001
603 #define PTP_RC_NIKON_OutOfFocus 0xA002
604 #define PTP_RC_NIKON_ChangeCameraModeFailed 0xA003
605 #define PTP_RC_NIKON_InvalidStatus 0xA004
606 #define PTP_RC_NIKON_SetPropertyNotSupported 0xA005
607 #define PTP_RC_NIKON_WbResetError 0xA006
608 #define PTP_RC_NIKON_DustReferenceError 0xA007
609 #define PTP_RC_NIKON_ShutterSpeedBulb 0xA008
610 #define PTP_RC_NIKON_MirrorUpSequence 0xA009
611 #define PTP_RC_NIKON_CameraModeNotAdjustFNumber 0xA00A
612 #define PTP_RC_NIKON_NotLiveView 0xA00B
613 #define PTP_RC_NIKON_MfDriveStepEnd 0xA00C
614 #define PTP_RC_NIKON_MfDriveStepInsufficiency 0xA00E
615 #define PTP_RC_NIKON_AdvancedTransferCancel 0xA022
616 
617 /* Canon specific response codes */
618 #define PTP_RC_CANON_UNKNOWN_COMMAND 0xA001
619 #define PTP_RC_CANON_OPERATION_REFUSED 0xA005
620 #define PTP_RC_CANON_LENS_COVER 0xA006
621 #define PTP_RC_CANON_BATTERY_LOW 0xA101
622 #define PTP_RC_CANON_NOT_READY 0xA102
623 
624 #define PTP_RC_CANON_A009 0xA009
625 
626 /* Microsoft/MTP specific codes */
627 #define PTP_RC_MTP_Undefined 0xA800
628 #define PTP_RC_MTP_Invalid_ObjectPropCode 0xA801
629 #define PTP_RC_MTP_Invalid_ObjectProp_Format 0xA802
630 #define PTP_RC_MTP_Invalid_ObjectProp_Value 0xA803
631 #define PTP_RC_MTP_Invalid_ObjectReference 0xA804
632 #define PTP_RC_MTP_Invalid_Dataset 0xA806
633 #define PTP_RC_MTP_Specification_By_Group_Unsupported 0xA807
634 #define PTP_RC_MTP_Specification_By_Depth_Unsupported 0xA808
635 #define PTP_RC_MTP_Object_Too_Large 0xA809
636 #define PTP_RC_MTP_ObjectProp_Not_Supported 0xA80A
637 
638 /* Microsoft Advanced Audio/Video Transfer response codes
639 (microsoft.com/AAVT 1.0) */
640 #define PTP_RC_MTP_Invalid_Media_Session_ID 0xA170
641 #define PTP_RC_MTP_Media_Session_Limit_Reached 0xA171
642 #define PTP_RC_MTP_No_More_Data 0xA172
643 
644 /* WiFi Provisioning MTP Extension Error Codes (microsoft.com/WPDWCN: 1.0) */
645 #define PTP_RC_MTP_Invalid_WFC_Syntax 0xA121
646 #define PTP_RC_MTP_WFC_Version_Not_Supported 0xA122
647 
648 /* libptp2 extended ERROR codes */
649 #define PTP_ERROR_IO 0x02FF
650 #define PTP_ERROR_DATA_EXPECTED 0x02FE
651 #define PTP_ERROR_RESP_EXPECTED 0x02FD
652 #define PTP_ERROR_BADPARAM 0x02FC
653 #define PTP_ERROR_CANCEL 0x02FB
654 #define PTP_ERROR_TIMEOUT 0x02FA
655 
656 /* PTP Event Codes */
657 
658 #define PTP_EC_Undefined 0x4000
659 #define PTP_EC_CancelTransaction 0x4001
660 #define PTP_EC_ObjectAdded 0x4002
661 #define PTP_EC_ObjectRemoved 0x4003
662 #define PTP_EC_StoreAdded 0x4004
663 #define PTP_EC_StoreRemoved 0x4005
664 #define PTP_EC_DevicePropChanged 0x4006
665 #define PTP_EC_ObjectInfoChanged 0x4007
666 #define PTP_EC_DeviceInfoChanged 0x4008
667 #define PTP_EC_RequestObjectTransfer 0x4009
668 #define PTP_EC_StoreFull 0x400A
669 #define PTP_EC_DeviceReset 0x400B
670 #define PTP_EC_StorageInfoChanged 0x400C
671 #define PTP_EC_CaptureComplete 0x400D
672 #define PTP_EC_UnreportedStatus 0x400E
673 
674 /* Canon extension Event Codes */
675 #define PTP_EC_CANON_ExtendedErrorcode 0xC005 /* ? */
676 #define PTP_EC_CANON_ObjectInfoChanged 0xC008
677 #define PTP_EC_CANON_RequestObjectTransfer 0xC009
678 #define PTP_EC_CANON_CameraModeChanged 0xC00C
679 #define PTP_EC_CANON_ShutterButtonPressed 0xC00E
680 
681 #define PTP_EC_CANON_StartDirectTransfer 0xC011
682 #define PTP_EC_CANON_StopDirectTransfer 0xC013
683 
684 /* Canon EOS events */
685 #define PTP_EC_CANON_EOS_RequestGetEvent 0xc101
686 #define PTP_EC_CANON_EOS_ObjectAddedEx 0xc181
687 #define PTP_EC_CANON_EOS_ObjectRemoved 0xc182
688 #define PTP_EC_CANON_EOS_RequestGetObjectInfoEx 0xc183
689 #define PTP_EC_CANON_EOS_StorageStatusChanged 0xc184
690 #define PTP_EC_CANON_EOS_StorageInfoChanged 0xc185
691 #define PTP_EC_CANON_EOS_RequestObjectTransfer 0xc186
692 #define PTP_EC_CANON_EOS_ObjectInfoChangedEx 0xc187
693 #define PTP_EC_CANON_EOS_ObjectContentChanged 0xc188
694 #define PTP_EC_CANON_EOS_PropValueChanged 0xc189
695 #define PTP_EC_CANON_EOS_AvailListChanged 0xc18a
696 #define PTP_EC_CANON_EOS_CameraStatusChanged 0xc18b
697 #define PTP_EC_CANON_EOS_WillSoonShutdown 0xc18d
698 #define PTP_EC_CANON_EOS_ShutdownTimerUpdated 0xc18e
699 #define PTP_EC_CANON_EOS_RequestCancelTransfer 0xc18f
700 #define PTP_EC_CANON_EOS_RequestObjectTransferDT 0xc190
701 #define PTP_EC_CANON_EOS_RequestCancelTransferDT 0xc191
702 #define PTP_EC_CANON_EOS_StoreAdded 0xc192
703 #define PTP_EC_CANON_EOS_StoreRemoved 0xc193
704 #define PTP_EC_CANON_EOS_BulbExposureTime 0xc194
705 #define PTP_EC_CANON_EOS_RecordingTime 0xc195
706 #define PTP_EC_CANON_EOS_RequestObjectTransferTS 0xC1a2
707 #define PTP_EC_CANON_EOS_AfResult 0xc1a3
708 
709 /* Nikon extension Event Codes */
710 
711 /* Nikon extension Event Codes */
712 #define PTP_EC_Nikon_ObjectAddedInSDRAM 0xC101
713 #define PTP_EC_Nikon_CaptureCompleteRecInSdram 0xC102
714 /* Gets 1 parameter, objectid pointing to DPOF object */
715 #define PTP_EC_Nikon_AdvancedTransfer 0xC103
716 #define PTP_EC_Nikon_PreviewImageAdded 0xC104
717 
718 /* MTP Event codes */
719 #define PTP_EC_MTP_ObjectPropChanged 0xC801
720 #define PTP_EC_MTP_ObjectPropDescChanged 0xC802
721 #define PTP_EC_MTP_ObjectReferencesChanged 0xC803
722 
723 /* constants for GetObjectHandles */
724 #define PTP_GOH_ALL_STORAGE 0xffffffff
725 #define PTP_GOH_ALL_FORMATS 0x00000000
726 #define PTP_GOH_ALL_ASSOCS 0x00000000
727 #define PTP_GOH_ROOT_PARENT 0xffffffff
728 
729 /* PTP device info structure (returned by GetDevInfo) */
730 
732  uint16_t StandardVersion;
733  uint32_t VendorExtensionID;
734  uint16_t VendorExtensionVersion;
735  char *VendorExtensionDesc;
736  uint16_t FunctionalMode;
737  uint32_t OperationsSupported_len;
738  uint16_t *OperationsSupported;
739  uint32_t EventsSupported_len;
740  uint16_t *EventsSupported;
741  uint32_t DevicePropertiesSupported_len;
742  uint16_t *DevicePropertiesSupported;
743  uint32_t CaptureFormats_len;
744  uint16_t *CaptureFormats;
745  uint32_t ImageFormats_len;
746  uint16_t *ImageFormats;
747  char *Manufacturer;
748  char *Model;
749  char *DeviceVersion;
750  char *SerialNumber;
751 };
752 typedef struct _PTPDeviceInfo PTPDeviceInfo;
753 
754 /* PTP storageIDs structute (returned by GetStorageIDs) */
755 
757  uint32_t n;
758  uint32_t *Storage;
759 };
760 typedef struct _PTPStorageIDs PTPStorageIDs;
761 
762 /* PTP StorageInfo structure (returned by GetStorageInfo) */
764  uint16_t StorageType;
765  uint16_t FilesystemType;
766  uint16_t AccessCapability;
767  uint64_t MaxCapability;
768  uint64_t FreeSpaceInBytes;
769  uint32_t FreeSpaceInImages;
770  char *StorageDescription;
771  char *VolumeLabel;
772 };
773 typedef struct _PTPStorageInfo PTPStorageInfo;
774 
775 /* PTP objecthandles structure (returned by GetObjectHandles) */
776 
778  uint32_t n;
779  uint32_t *Handler;
780 };
781 typedef struct _PTPObjectHandles PTPObjectHandles;
782 
783 #define PTP_HANDLER_SPECIAL 0xffffffff
784 #define PTP_HANDLER_ROOT 0x00000000
785 
786 
787 /* PTP objectinfo structure (returned by GetObjectInfo) */
788 
790  uint32_t StorageID;
791  uint16_t ObjectFormat;
792  uint16_t ProtectionStatus;
793  /* In the regular objectinfo this is 32bit,
794  * but we keep the general object size here
795  * that also arrives via other methods and so
796  * use 64bit */
797  uint64_t ObjectCompressedSize;
798  uint16_t ThumbFormat;
799  uint32_t ThumbCompressedSize;
800  uint32_t ThumbPixWidth;
801  uint32_t ThumbPixHeight;
802  uint32_t ImagePixWidth;
803  uint32_t ImagePixHeight;
804  uint32_t ImageBitDepth;
805  uint32_t ParentObject;
806  uint16_t AssociationType;
807  uint32_t AssociationDesc;
808  uint32_t SequenceNumber;
809  char *Filename;
810  time_t CaptureDate;
811  time_t ModificationDate;
812  char *Keywords;
813 };
814 typedef struct _PTPObjectInfo PTPObjectInfo;
815 
816 /* max ptp string length INCLUDING terminating null character */
817 
818 #define PTP_MAXSTRLEN 255
819 
820 /* PTP Object Format Codes */
821 
822 /* ancillary formats */
823 #define PTP_OFC_Undefined 0x3000
824 #define PTP_OFC_Defined 0x3800
825 #define PTP_OFC_Association 0x3001
826 #define PTP_OFC_Script 0x3002
827 #define PTP_OFC_Executable 0x3003
828 #define PTP_OFC_Text 0x3004
829 #define PTP_OFC_HTML 0x3005
830 #define PTP_OFC_DPOF 0x3006
831 #define PTP_OFC_AIFF 0x3007
832 #define PTP_OFC_WAV 0x3008
833 #define PTP_OFC_MP3 0x3009
834 #define PTP_OFC_AVI 0x300A
835 #define PTP_OFC_MPEG 0x300B
836 #define PTP_OFC_ASF 0x300C
837 #define PTP_OFC_QT 0x300D /* guessing */
838 /* image formats */
839 #define PTP_OFC_EXIF_JPEG 0x3801
840 #define PTP_OFC_TIFF_EP 0x3802
841 #define PTP_OFC_FlashPix 0x3803
842 #define PTP_OFC_BMP 0x3804
843 #define PTP_OFC_CIFF 0x3805
844 #define PTP_OFC_Undefined_0x3806 0x3806
845 #define PTP_OFC_GIF 0x3807
846 #define PTP_OFC_JFIF 0x3808
847 #define PTP_OFC_PCD 0x3809
848 #define PTP_OFC_PICT 0x380A
849 #define PTP_OFC_PNG 0x380B
850 #define PTP_OFC_Undefined_0x380C 0x380C
851 #define PTP_OFC_TIFF 0x380D
852 #define PTP_OFC_TIFF_IT 0x380E
853 #define PTP_OFC_JP2 0x380F
854 #define PTP_OFC_JPX 0x3810
855 /* ptp v1.1 has only DNG new */
856 #define PTP_OFC_DNG 0x3811
857 /* Eastman Kodak extension ancillary format */
858 #define PTP_OFC_EK_M3U 0xb002
859 /* Canon extension */
860 #define PTP_OFC_CANON_CRW 0xb101
861 #define PTP_OFC_CANON_CRW3 0xb103
862 #define PTP_OFC_CANON_MOV 0xb104
863 /* CHDK specific raw mode */
864 #define PTP_OFC_CANON_CHDK_CRW 0xb1ff
865 /* MTP extensions */
866 #define PTP_OFC_MTP_MediaCard 0xb211
867 #define PTP_OFC_MTP_MediaCardGroup 0xb212
868 #define PTP_OFC_MTP_Encounter 0xb213
869 #define PTP_OFC_MTP_EncounterBox 0xb214
870 #define PTP_OFC_MTP_M4A 0xb215
871 #define PTP_OFC_MTP_ZUNEUNDEFINED 0xb217 /* Unknown file type */
872 #define PTP_OFC_MTP_Firmware 0xb802
873 #define PTP_OFC_MTP_WindowsImageFormat 0xb881
874 #define PTP_OFC_MTP_UndefinedAudio 0xb900
875 #define PTP_OFC_MTP_WMA 0xb901
876 #define PTP_OFC_MTP_OGG 0xb902
877 #define PTP_OFC_MTP_AAC 0xb903
878 #define PTP_OFC_MTP_AudibleCodec 0xb904
879 #define PTP_OFC_MTP_FLAC 0xb906
880 #define PTP_OFC_MTP_SamsungPlaylist 0xb909
881 #define PTP_OFC_MTP_UndefinedVideo 0xb980
882 #define PTP_OFC_MTP_WMV 0xb981
883 #define PTP_OFC_MTP_MP4 0xb982
884 #define PTP_OFC_MTP_MP2 0xb983
885 #define PTP_OFC_MTP_3GP 0xb984
886 #define PTP_OFC_MTP_UndefinedCollection 0xba00
887 #define PTP_OFC_MTP_AbstractMultimediaAlbum 0xba01
888 #define PTP_OFC_MTP_AbstractImageAlbum 0xba02
889 #define PTP_OFC_MTP_AbstractAudioAlbum 0xba03
890 #define PTP_OFC_MTP_AbstractVideoAlbum 0xba04
891 #define PTP_OFC_MTP_AbstractAudioVideoPlaylist 0xba05
892 #define PTP_OFC_MTP_AbstractContactGroup 0xba06
893 #define PTP_OFC_MTP_AbstractMessageFolder 0xba07
894 #define PTP_OFC_MTP_AbstractChapteredProduction 0xba08
895 #define PTP_OFC_MTP_AbstractAudioPlaylist 0xba09
896 #define PTP_OFC_MTP_AbstractVideoPlaylist 0xba0a
897 #define PTP_OFC_MTP_AbstractMediacast 0xba0b
898 #define PTP_OFC_MTP_WPLPlaylist 0xba10
899 #define PTP_OFC_MTP_M3UPlaylist 0xba11
900 #define PTP_OFC_MTP_MPLPlaylist 0xba12
901 #define PTP_OFC_MTP_ASXPlaylist 0xba13
902 #define PTP_OFC_MTP_PLSPlaylist 0xba14
903 #define PTP_OFC_MTP_UndefinedDocument 0xba80
904 #define PTP_OFC_MTP_AbstractDocument 0xba81
905 #define PTP_OFC_MTP_XMLDocument 0xba82
906 #define PTP_OFC_MTP_MSWordDocument 0xba83
907 #define PTP_OFC_MTP_MHTCompiledHTMLDocument 0xba84
908 #define PTP_OFC_MTP_MSExcelSpreadsheetXLS 0xba85
909 #define PTP_OFC_MTP_MSPowerpointPresentationPPT 0xba86
910 #define PTP_OFC_MTP_UndefinedMessage 0xbb00
911 #define PTP_OFC_MTP_AbstractMessage 0xbb01
912 #define PTP_OFC_MTP_UndefinedContact 0xbb80
913 #define PTP_OFC_MTP_AbstractContact 0xbb81
914 #define PTP_OFC_MTP_vCard2 0xbb82
915 #define PTP_OFC_MTP_vCard3 0xbb83
916 #define PTP_OFC_MTP_UndefinedCalendarItem 0xbe00
917 #define PTP_OFC_MTP_AbstractCalendarItem 0xbe01
918 #define PTP_OFC_MTP_vCalendar1 0xbe02
919 #define PTP_OFC_MTP_vCalendar2 0xbe03
920 #define PTP_OFC_MTP_UndefinedWindowsExecutable 0xbe80
921 #define PTP_OFC_MTP_MediaCast 0xbe81
922 #define PTP_OFC_MTP_Section 0xbe82
923 
924 /* PTP Association Types */
925 #define PTP_AT_Undefined 0x0000
926 #define PTP_AT_GenericFolder 0x0001
927 #define PTP_AT_Album 0x0002
928 #define PTP_AT_TimeSequence 0x0003
929 #define PTP_AT_HorizontalPanoramic 0x0004
930 #define PTP_AT_VerticalPanoramic 0x0005
931 #define PTP_AT_2DPanoramic 0x0006
932 #define PTP_AT_AncillaryData 0x0007
933 
934 /* PTP Protection Status */
935 
936 #define PTP_PS_NoProtection 0x0000
937 #define PTP_PS_ReadOnly 0x0001
938 #define PTP_PS_MTP_ReadOnlyData 0x8002
939 #define PTP_PS_MTP_NonTransferableData 0x8003
940 
941 /* PTP Storage Types */
942 
943 #define PTP_ST_Undefined 0x0000
944 #define PTP_ST_FixedROM 0x0001
945 #define PTP_ST_RemovableROM 0x0002
946 #define PTP_ST_FixedRAM 0x0003
947 #define PTP_ST_RemovableRAM 0x0004
948 
949 /* PTP FilesystemType Values */
950 
951 #define PTP_FST_Undefined 0x0000
952 #define PTP_FST_GenericFlat 0x0001
953 #define PTP_FST_GenericHierarchical 0x0002
954 #define PTP_FST_DCF 0x0003
955 
956 /* PTP StorageInfo AccessCapability Values */
957 
958 #define PTP_AC_ReadWrite 0x0000
959 #define PTP_AC_ReadOnly 0x0001
960 #define PTP_AC_ReadOnly_with_Object_Deletion 0x0002
961 
962 /* Property Describing Dataset, Range Form */
963 
965  char *str; /* common string, malloced */
966  uint8_t u8;
967  int8_t i8;
968  uint16_t u16;
969  int16_t i16;
970  uint32_t u32;
971  int32_t i32;
972  uint64_t u64;
973  int64_t i64;
974  /* XXXX: 128 bit signed and unsigned missing */
975  struct array {
976  uint32_t count;
977  union _PTPPropertyValue *v; /* malloced, count elements */
978  } a;
979 };
980 
981 typedef union _PTPPropertyValue PTPPropertyValue;
982 
983 /* Metadata lists for MTP operations */
985  uint16_t property;
986  uint16_t datatype;
987  uint32_t ObjectHandle;
988  PTPPropertyValue propval;
989 };
990 typedef struct _MTPProperties MTPProperties;
991 
993  PTPPropertyValue MinimumValue;
994  PTPPropertyValue MaximumValue;
995  PTPPropertyValue StepSize;
996 };
998 
999 /* Property Describing Dataset, Enum Form */
1000 
1002  uint16_t NumberOfValues;
1003  PTPPropertyValue *SupportedValue; /* malloced */
1004 };
1006 
1007 /* Device Property Describing Dataset (DevicePropDesc) */
1008 
1010  uint16_t DevicePropertyCode;
1011  uint16_t DataType;
1012  uint8_t GetSet;
1013  PTPPropertyValue FactoryDefaultValue;
1014  PTPPropertyValue CurrentValue;
1015  uint8_t FormFlag;
1016  union {
1017  PTPPropDescEnumForm Enum;
1018  PTPPropDescRangeForm Range;
1019  } FORM;
1020 };
1021 typedef struct _PTPDevicePropDesc PTPDevicePropDesc;
1022 
1023 /* Object Property Describing Dataset (DevicePropDesc) */
1024 
1026  uint16_t ObjectPropertyCode;
1027  uint16_t DataType;
1028  uint8_t GetSet;
1029  PTPPropertyValue FactoryDefaultValue;
1030  uint32_t GroupCode;
1031  uint8_t FormFlag;
1032  union {
1033  PTPPropDescEnumForm Enum;
1034  PTPPropDescRangeForm Range;
1035  } FORM;
1036 };
1037 typedef struct _PTPObjectPropDesc PTPObjectPropDesc;
1038 
1039 /* Canon filesystem's folder entry Dataset */
1040 
1041 #define PTP_CANON_FilenameBufferLen 13
1042 #define PTP_CANON_FolderEntryLen 28
1043 
1045  uint32_t ObjectHandle;
1046  uint16_t ObjectFormatCode;
1047  uint8_t Flags;
1048  uint32_t ObjectSize;
1049  time_t Time;
1050  char Filename[PTP_CANON_FilenameBufferLen];
1051 
1052  uint32_t StorageID;
1053 };
1055 
1056 /* Nikon Tone Curve Data */
1057 
1058 #define PTP_NIKON_MaxCurvePoints 19
1059 
1061  uint8_t X;
1062  uint8_t Y;
1063 };
1064 
1066 
1068  uint8_t X;
1069  uint8_t Y;
1070 };
1071 
1073 
1075  char static_preamble[6];
1076  uint8_t XAxisStartPoint;
1077  uint8_t XAxisEndPoint;
1078  uint8_t YAxisStartPoint;
1079  uint8_t YAxisEndPoint;
1080  uint8_t MidPointIntegerPart;
1081  uint8_t MidPointDecimalPart;
1082  uint8_t NCoordinates;
1083  PTPNIKONCoordinatePair CurveCoordinates[PTP_NIKON_MaxCurvePoints];
1084 };
1085 
1086 typedef struct _PTPNIKONCurveData PTPNIKONCurveData;
1087 
1089  char *title;
1090  char *line[5];
1091 };
1092 typedef struct _PTPEKTextParams PTPEKTextParams;
1093 
1094 /* Nikon Wifi profiles */
1095 
1097  /* Values valid both when reading and writing profiles */
1098  char profile_name[17];
1099  uint8_t device_type;
1100  uint8_t icon_type;
1101  char essid[33];
1102 
1103  /* Values only valid when reading. Some of these are in the write packet,
1104  * but are set automatically, like id, display_order and creation_date. */
1105  uint8_t id;
1106  uint8_t valid;
1107  uint8_t display_order;
1108  char creation_date[16];
1109  char lastusage_date[16];
1110 
1111  /* Values only valid when writing */
1112  uint32_t ip_address;
1113  uint8_t subnet_mask; /* first zero bit position, e.g. 24 for 255.255.255.0 */
1114  uint32_t gateway_address;
1115  uint8_t address_mode; /* 0 - Manual, 2-3 - DHCP ad-hoc/managed*/
1116  uint8_t access_mode; /* 0 - Managed, 1 - Adhoc */
1117  uint8_t wifi_channel; /* 1-11 */
1118  uint8_t authentification; /* 0 - Open, 1 - Shared, 2 - WPA-PSK */
1119  uint8_t encryption; /* 0 - None, 1 - WEP 64bit, 2 - WEP 128bit (not supported: 3 - TKIP) */
1120  uint8_t key[64];
1121  uint8_t key_nr;
1122 /* char guid[16]; */
1123 };
1124 
1126 
1127 #define PTP_CANON_EOS_CHANGES_TYPE_UNKNOWN 0
1128 #define PTP_CANON_EOS_CHANGES_TYPE_OBJECTINFO 1
1129 #define PTP_CANON_EOS_CHANGES_TYPE_OBJECTTRANSFER 2
1130 #define PTP_CANON_EOS_CHANGES_TYPE_PROPERTY 3
1131 #define PTP_CANON_EOS_CHANGES_TYPE_CAMERASTATUS 4
1132 
1134  uint32_t oid;
1135  PTPObjectInfo oi;
1136 };
1137 
1139  int type;
1140  union {
1141  struct _PTPCanon_New_Object object; /* TYPE_OBJECTINFO */
1142  char *info;
1143  uint16_t propid;
1144  int status;
1145  } u;
1146 };
1148 
1149 typedef struct _PTPCanon_Property {
1150  uint32_t size;
1151  uint32_t type;
1152  uint32_t proptype;
1153  unsigned char *data;
1154 
1155  /* fill out for queries */
1156  PTPDevicePropDesc dpd;
1158 
1159 typedef struct _PTPCanonEOSDeviceInfo {
1160  /* length */
1161  uint32_t EventsSupported_len;
1162  uint32_t *EventsSupported;
1163 
1164  uint32_t DevicePropertiesSupported_len;
1165  uint32_t *DevicePropertiesSupported;
1166 
1167  uint32_t unk_len;
1168  uint32_t *unk;
1170 
1171 /* DataType Codes */
1172 
1173 #define PTP_DTC_UNDEF 0x0000
1174 #define PTP_DTC_INT8 0x0001
1175 #define PTP_DTC_UINT8 0x0002
1176 #define PTP_DTC_INT16 0x0003
1177 #define PTP_DTC_UINT16 0x0004
1178 #define PTP_DTC_INT32 0x0005
1179 #define PTP_DTC_UINT32 0x0006
1180 #define PTP_DTC_INT64 0x0007
1181 #define PTP_DTC_UINT64 0x0008
1182 #define PTP_DTC_INT128 0x0009
1183 #define PTP_DTC_UINT128 0x000A
1184 
1185 #define PTP_DTC_ARRAY_MASK 0x4000
1186 
1187 #define PTP_DTC_AINT8 (PTP_DTC_ARRAY_MASK | PTP_DTC_INT8)
1188 #define PTP_DTC_AUINT8 (PTP_DTC_ARRAY_MASK | PTP_DTC_UINT8)
1189 #define PTP_DTC_AINT16 (PTP_DTC_ARRAY_MASK | PTP_DTC_INT16)
1190 #define PTP_DTC_AUINT16 (PTP_DTC_ARRAY_MASK | PTP_DTC_UINT16)
1191 #define PTP_DTC_AINT32 (PTP_DTC_ARRAY_MASK | PTP_DTC_INT32)
1192 #define PTP_DTC_AUINT32 (PTP_DTC_ARRAY_MASK | PTP_DTC_UINT32)
1193 #define PTP_DTC_AINT64 (PTP_DTC_ARRAY_MASK | PTP_DTC_INT64)
1194 #define PTP_DTC_AUINT64 (PTP_DTC_ARRAY_MASK | PTP_DTC_UINT64)
1195 #define PTP_DTC_AINT128 (PTP_DTC_ARRAY_MASK | PTP_DTC_INT128)
1196 #define PTP_DTC_AUINT128 (PTP_DTC_ARRAY_MASK | PTP_DTC_UINT128)
1197 
1198 #define PTP_DTC_STR 0xFFFF
1199 
1200 /* Device Properties Codes */
1201 
1202 /* PTP v1.0 property codes */
1203 #define PTP_DPC_Undefined 0x5000
1204 #define PTP_DPC_BatteryLevel 0x5001
1205 #define PTP_DPC_FunctionalMode 0x5002
1206 #define PTP_DPC_ImageSize 0x5003
1207 #define PTP_DPC_CompressionSetting 0x5004
1208 #define PTP_DPC_WhiteBalance 0x5005
1209 #define PTP_DPC_RGBGain 0x5006
1210 #define PTP_DPC_FNumber 0x5007
1211 #define PTP_DPC_FocalLength 0x5008
1212 #define PTP_DPC_FocusDistance 0x5009
1213 #define PTP_DPC_FocusMode 0x500A
1214 #define PTP_DPC_ExposureMeteringMode 0x500B
1215 #define PTP_DPC_FlashMode 0x500C
1216 #define PTP_DPC_ExposureTime 0x500D
1217 #define PTP_DPC_ExposureProgramMode 0x500E
1218 #define PTP_DPC_ExposureIndex 0x500F
1219 #define PTP_DPC_ExposureBiasCompensation 0x5010
1220 #define PTP_DPC_DateTime 0x5011
1221 #define PTP_DPC_CaptureDelay 0x5012
1222 #define PTP_DPC_StillCaptureMode 0x5013
1223 #define PTP_DPC_Contrast 0x5014
1224 #define PTP_DPC_Sharpness 0x5015
1225 #define PTP_DPC_DigitalZoom 0x5016
1226 #define PTP_DPC_EffectMode 0x5017
1227 #define PTP_DPC_BurstNumber 0x5018
1228 #define PTP_DPC_BurstInterval 0x5019
1229 #define PTP_DPC_TimelapseNumber 0x501A
1230 #define PTP_DPC_TimelapseInterval 0x501B
1231 #define PTP_DPC_FocusMeteringMode 0x501C
1232 #define PTP_DPC_UploadURL 0x501D
1233 #define PTP_DPC_Artist 0x501E
1234 #define PTP_DPC_CopyrightInfo 0x501F
1235 /* PTP v1.1 property codes */
1236 #define PTP_DPC_SupportedStreams 0x5020
1237 #define PTP_DPC_EnabledStreams 0x5021
1238 #define PTP_DPC_VideoFormat 0x5022
1239 #define PTP_DPC_VideoResolution 0x5023
1240 #define PTP_DPC_VideoQuality 0x5024
1241 #define PTP_DPC_VideoFrameRate 0x5025
1242 #define PTP_DPC_VideoContrast 0x5026
1243 #define PTP_DPC_VideoBrightness 0x5027
1244 #define PTP_DPC_AudioFormat 0x5028
1245 #define PTP_DPC_AudioBitrate 0x5029
1246 #define PTP_DPC_AudioSamplingRate 0x502A
1247 #define PTP_DPC_AudioBitPerSample 0x502B
1248 #define PTP_DPC_AudioVolume 0x502C
1249 
1250 /* Proprietary vendor extension device property mask */
1251 #define PTP_DPC_EXTENSION_MASK 0xF000
1252 #define PTP_DPC_EXTENSION 0xD000
1253 
1254 /* Zune extension device property codes */
1255 #define PTP_DPC_MTP_ZUNE_UNKNOWN1 0xD181
1256 #define PTP_DPC_MTP_ZUNE_UNKNOWN2 0xD132
1257 #define PTP_DPC_MTP_ZUNE_UNKNOWN3 0xD215
1258 #define PTP_DPC_MTP_ZUNE_UNKNOWN4 0xD216
1259 
1260 /* Eastman Kodak extension device property codes */
1261 #define PTP_DPC_EK_ColorTemperature 0xD001
1262 #define PTP_DPC_EK_DateTimeStampFormat 0xD002
1263 #define PTP_DPC_EK_BeepMode 0xD003
1264 #define PTP_DPC_EK_VideoOut 0xD004
1265 #define PTP_DPC_EK_PowerSaving 0xD005
1266 #define PTP_DPC_EK_UI_Language 0xD006
1267 
1268 /* Canon extension device property codes */
1269 #define PTP_DPC_CANON_BeepMode 0xD001
1270 #define PTP_DPC_CANON_BatteryKind 0xD002
1271 #define PTP_DPC_CANON_BatteryStatus 0xD003
1272 #define PTP_DPC_CANON_UILockType 0xD004
1273 #define PTP_DPC_CANON_CameraMode 0xD005
1274 #define PTP_DPC_CANON_ImageQuality 0xD006
1275 #define PTP_DPC_CANON_FullViewFileFormat 0xD007
1276 #define PTP_DPC_CANON_ImageSize 0xD008
1277 #define PTP_DPC_CANON_SelfTime 0xD009
1278 #define PTP_DPC_CANON_FlashMode 0xD00A
1279 #define PTP_DPC_CANON_Beep 0xD00B
1280 #define PTP_DPC_CANON_ShootingMode 0xD00C
1281 #define PTP_DPC_CANON_ImageMode 0xD00D
1282 #define PTP_DPC_CANON_DriveMode 0xD00E
1283 #define PTP_DPC_CANON_EZoom 0xD00F
1284 #define PTP_DPC_CANON_MeteringMode 0xD010
1285 #define PTP_DPC_CANON_AFDistance 0xD011
1286 #define PTP_DPC_CANON_FocusingPoint 0xD012
1287 #define PTP_DPC_CANON_WhiteBalance 0xD013
1288 #define PTP_DPC_CANON_SlowShutterSetting 0xD014
1289 #define PTP_DPC_CANON_AFMode 0xD015
1290 #define PTP_DPC_CANON_ImageStabilization 0xD016
1291 #define PTP_DPC_CANON_Contrast 0xD017
1292 #define PTP_DPC_CANON_ColorGain 0xD018
1293 #define PTP_DPC_CANON_Sharpness 0xD019
1294 #define PTP_DPC_CANON_Sensitivity 0xD01A
1295 #define PTP_DPC_CANON_ParameterSet 0xD01B
1296 #define PTP_DPC_CANON_ISOSpeed 0xD01C
1297 #define PTP_DPC_CANON_Aperture 0xD01D
1298 #define PTP_DPC_CANON_ShutterSpeed 0xD01E
1299 #define PTP_DPC_CANON_ExpCompensation 0xD01F
1300 #define PTP_DPC_CANON_FlashCompensation 0xD020
1301 #define PTP_DPC_CANON_AEBExposureCompensation 0xD021
1302 #define PTP_DPC_CANON_AvOpen 0xD023
1303 #define PTP_DPC_CANON_AvMax 0xD024
1304 #define PTP_DPC_CANON_FocalLength 0xD025
1305 #define PTP_DPC_CANON_FocalLengthTele 0xD026
1306 #define PTP_DPC_CANON_FocalLengthWide 0xD027
1307 #define PTP_DPC_CANON_FocalLengthDenominator 0xD028
1308 #define PTP_DPC_CANON_CaptureTransferMode 0xD029
1309 #define CANON_TRANSFER_ENTIRE_IMAGE_TO_PC 0x0002
1310 #define CANON_TRANSFER_SAVE_THUMBNAIL_TO_DEVICE 0x0004
1311 #define CANON_TRANSFER_SAVE_IMAGE_TO_DEVICE 0x0008
1312 /* we use those values: */
1313 #define CANON_TRANSFER_MEMORY (2|1)
1314 #define CANON_TRANSFER_CARD (8|4|1)
1315 
1316 #define PTP_DPC_CANON_Zoom 0xD02A
1317 #define PTP_DPC_CANON_NamePrefix 0xD02B
1318 #define PTP_DPC_CANON_SizeQualityMode 0xD02C
1319 #define PTP_DPC_CANON_SupportedThumbSize 0xD02D
1320 #define PTP_DPC_CANON_SizeOfOutputDataFromCamera 0xD02E
1321 #define PTP_DPC_CANON_SizeOfInputDataToCamera 0xD02F
1322 #define PTP_DPC_CANON_RemoteAPIVersion 0xD030
1323 #define PTP_DPC_CANON_FirmwareVersion 0xD031
1324 #define PTP_DPC_CANON_CameraModel 0xD032
1325 #define PTP_DPC_CANON_CameraOwner 0xD033
1326 #define PTP_DPC_CANON_UnixTime 0xD034
1327 #define PTP_DPC_CANON_CameraBodyID 0xD035
1328 #define PTP_DPC_CANON_CameraOutput 0xD036
1329 #define PTP_DPC_CANON_DispAv 0xD037
1330 #define PTP_DPC_CANON_AvOpenApex 0xD038
1331 #define PTP_DPC_CANON_DZoomMagnification 0xD039
1332 #define PTP_DPC_CANON_MlSpotPos 0xD03A
1333 #define PTP_DPC_CANON_DispAvMax 0xD03B
1334 #define PTP_DPC_CANON_AvMaxApex 0xD03C
1335 #define PTP_DPC_CANON_EZoomStartPosition 0xD03D
1336 #define PTP_DPC_CANON_FocalLengthOfTele 0xD03E
1337 #define PTP_DPC_CANON_EZoomSizeOfTele 0xD03F
1338 #define PTP_DPC_CANON_PhotoEffect 0xD040
1339 #define PTP_DPC_CANON_AssistLight 0xD041
1340 #define PTP_DPC_CANON_FlashQuantityCount 0xD042
1341 #define PTP_DPC_CANON_RotationAngle 0xD043
1342 #define PTP_DPC_CANON_RotationScene 0xD044
1343 #define PTP_DPC_CANON_EventEmulateMode 0xD045
1344 #define PTP_DPC_CANON_DPOFVersion 0xD046
1345 #define PTP_DPC_CANON_TypeOfSupportedSlideShow 0xD047
1346 #define PTP_DPC_CANON_AverageFilesizes 0xD048
1347 #define PTP_DPC_CANON_ModelID 0xD049
1348 
1349 /* From EOS 400D trace. */
1350 #define PTP_DPC_CANON_EOS_Aperture 0xD101
1351 #define PTP_DPC_CANON_EOS_ShutterSpeed 0xD102
1352 #define PTP_DPC_CANON_EOS_ISOSpeed 0xD103
1353 #define PTP_DPC_CANON_EOS_ExpCompensation 0xD104
1354 #define PTP_DPC_CANON_EOS_AutoExposureMode 0xD105
1355 #define PTP_DPC_CANON_EOS_DriveMode 0xD106
1356 #define PTP_DPC_CANON_EOS_MeteringMode 0xD107
1357 #define PTP_DPC_CANON_EOS_FocusMode 0xD108
1358 #define PTP_DPC_CANON_EOS_WhiteBalance 0xD109
1359 #define PTP_DPC_CANON_EOS_ColorTemperature 0xD10A
1360 #define PTP_DPC_CANON_EOS_WhiteBalanceAdjustA 0xD10B
1361 #define PTP_DPC_CANON_EOS_WhiteBalanceAdjustB 0xD10C
1362 #define PTP_DPC_CANON_EOS_WhiteBalanceXA 0xD10D
1363 #define PTP_DPC_CANON_EOS_WhiteBalanceXB 0xD10E
1364 #define PTP_DPC_CANON_EOS_ColorSpace 0xD10F
1365 #define PTP_DPC_CANON_EOS_PictureStyle 0xD110
1366 #define PTP_DPC_CANON_EOS_BatteryPower 0xD111
1367 #define PTP_DPC_CANON_EOS_BatterySelect 0xD112
1368 #define PTP_DPC_CANON_EOS_CameraTime 0xD113
1369 #define PTP_DPC_CANON_EOS_Owner 0xD115
1370 #define PTP_DPC_CANON_EOS_ModelID 0xD116
1371 #define PTP_DPC_CANON_EOS_PTPExtensionVersion 0xD119
1372 #define PTP_DPC_CANON_EOS_DPOFVersion 0xD11A
1373 #define PTP_DPC_CANON_EOS_AvailableShots 0xD11B
1374 #define PTP_CANON_EOS_CAPTUREDEST_HD 4
1375 #define PTP_DPC_CANON_EOS_CaptureDestination 0xD11C
1376 #define PTP_DPC_CANON_EOS_BracketMode 0xD11D
1377 #define PTP_DPC_CANON_EOS_CurrentStorage 0xD11E
1378 #define PTP_DPC_CANON_EOS_CurrentFolder 0xD11F
1379 #define PTP_DPC_CANON_EOS_ImageFormat 0xD120 /* file setting */
1380 #define PTP_DPC_CANON_EOS_ImageFormatCF 0xD121 /* file setting CF */
1381 #define PTP_DPC_CANON_EOS_ImageFormatSD 0xD122 /* file setting SD */
1382 #define PTP_DPC_CANON_EOS_ImageFormatExtHD 0xD123 /* file setting exthd */
1383 #define PTP_DPC_CANON_EOS_CompressionS 0xD130
1384 #define PTP_DPC_CANON_EOS_CompressionM1 0xD131
1385 #define PTP_DPC_CANON_EOS_CompressionM2 0xD132
1386 #define PTP_DPC_CANON_EOS_CompressionL 0xD133
1387 #define PTP_DPC_CANON_EOS_PCWhiteBalance1 0xD140
1388 #define PTP_DPC_CANON_EOS_PCWhiteBalance2 0xD141
1389 #define PTP_DPC_CANON_EOS_PCWhiteBalance3 0xD142
1390 #define PTP_DPC_CANON_EOS_PCWhiteBalance4 0xD143
1391 #define PTP_DPC_CANON_EOS_PCWhiteBalance5 0xD144
1392 #define PTP_DPC_CANON_EOS_MWhiteBalance 0xD145
1393 #define PTP_DPC_CANON_EOS_PictureStyleStandard 0xD150
1394 #define PTP_DPC_CANON_EOS_PictureStylePortrait 0xD151
1395 #define PTP_DPC_CANON_EOS_PictureStyleLandscape 0xD152
1396 #define PTP_DPC_CANON_EOS_PictureStyleNeutral 0xD153
1397 #define PTP_DPC_CANON_EOS_PictureStyleFaithful 0xD154
1398 #define PTP_DPC_CANON_EOS_PictureStyleBlackWhite 0xD155
1399 #define PTP_DPC_CANON_EOS_PictureStyleUserSet1 0xD160
1400 #define PTP_DPC_CANON_EOS_PictureStyleUserSet2 0xD161
1401 #define PTP_DPC_CANON_EOS_PictureStyleUserSet3 0xD162
1402 #define PTP_DPC_CANON_EOS_PictureStyleParam1 0xD170
1403 #define PTP_DPC_CANON_EOS_PictureStyleParam2 0xD171
1404 #define PTP_DPC_CANON_EOS_PictureStyleParam3 0xD172
1405 #define PTP_DPC_CANON_EOS_FlavorLUTParams 0xD17f
1406 #define PTP_DPC_CANON_EOS_CustomFunc1 0xD180
1407 #define PTP_DPC_CANON_EOS_CustomFunc2 0xD181
1408 #define PTP_DPC_CANON_EOS_CustomFunc3 0xD182
1409 #define PTP_DPC_CANON_EOS_CustomFunc4 0xD183
1410 #define PTP_DPC_CANON_EOS_CustomFunc5 0xD184
1411 #define PTP_DPC_CANON_EOS_CustomFunc6 0xD185
1412 #define PTP_DPC_CANON_EOS_CustomFunc7 0xD186
1413 #define PTP_DPC_CANON_EOS_CustomFunc8 0xD187
1414 #define PTP_DPC_CANON_EOS_CustomFunc9 0xD188
1415 #define PTP_DPC_CANON_EOS_CustomFunc10 0xD189
1416 #define PTP_DPC_CANON_EOS_CustomFunc11 0xD18a
1417 #define PTP_DPC_CANON_EOS_CustomFunc12 0xD18b
1418 #define PTP_DPC_CANON_EOS_CustomFunc13 0xD18c
1419 #define PTP_DPC_CANON_EOS_CustomFunc14 0xD18d
1420 #define PTP_DPC_CANON_EOS_CustomFunc15 0xD18e
1421 #define PTP_DPC_CANON_EOS_CustomFunc16 0xD18f
1422 #define PTP_DPC_CANON_EOS_CustomFunc17 0xD190
1423 #define PTP_DPC_CANON_EOS_CustomFunc18 0xD191
1424 #define PTP_DPC_CANON_EOS_CustomFunc19 0xD192
1425 #define PTP_DPC_CANON_EOS_CustomFunc19 0xD192
1426 #define PTP_DPC_CANON_EOS_CustomFuncEx 0xD1a0
1427 #define PTP_DPC_CANON_EOS_MyMenu 0xD1a1
1428 #define PTP_DPC_CANON_EOS_MyMenuList 0xD1a2
1429 #define PTP_DPC_CANON_EOS_WftStatus 0xD1a3
1430 #define PTP_DPC_CANON_EOS_WftInputTransmission 0xD1a4
1431 #define PTP_DPC_CANON_EOS_HDDirectoryStructure 0xD1a5
1432 #define PTP_DPC_CANON_EOS_BatteryInfo 0xD1a6
1433 #define PTP_DPC_CANON_EOS_AdapterInfo 0xD1a7
1434 #define PTP_DPC_CANON_EOS_LensStatus 0xD1a8
1435 #define PTP_DPC_CANON_EOS_QuickReviewTime 0xD1a9
1436 #define PTP_DPC_CANON_EOS_CardExtension 0xD1aa
1437 #define PTP_DPC_CANON_EOS_TempStatus 0xD1ab
1438 #define PTP_DPC_CANON_EOS_ShutterCounter 0xD1ac
1439 #define PTP_DPC_CANON_EOS_SpecialOption 0xD1ad
1440 #define PTP_DPC_CANON_EOS_PhotoStudioMode 0xD1ae
1441 #define PTP_DPC_CANON_EOS_SerialNumber 0xD1af
1442 #define PTP_DPC_CANON_EOS_EVFOutputDevice 0xD1b0
1443 #define PTP_DPC_CANON_EOS_EVFMode 0xD1b1
1444 #define PTP_DPC_CANON_EOS_DepthOfFieldPreview 0xD1b2
1445 #define PTP_DPC_CANON_EOS_EVFSharpness 0xD1b3
1446 #define PTP_DPC_CANON_EOS_EVFWBMode 0xD1b4
1447 #define PTP_DPC_CANON_EOS_EVFClickWBCoeffs 0xD1b5
1448 #define PTP_DPC_CANON_EOS_EVFColorTemp 0xD1b6
1449 #define PTP_DPC_CANON_EOS_ExposureSimMode 0xD1b7
1450 #define PTP_DPC_CANON_EOS_EVFRecordStatus 0xD1b8
1451 #define PTP_DPC_CANON_EOS_LvAfSystem 0xD1ba
1452 #define PTP_DPC_CANON_EOS_MovSize 0xD1bb
1453 #define PTP_DPC_CANON_EOS_LvViewTypeSelect 0xD1bc
1454 #define PTP_DPC_CANON_EOS_Artist 0xD1d0
1455 #define PTP_DPC_CANON_EOS_Copyright 0xD1d1
1456 #define PTP_DPC_CANON_EOS_BracketValue 0xD1d2
1457 #define PTP_DPC_CANON_EOS_FocusInfoEx 0xD1d3
1458 #define PTP_DPC_CANON_EOS_DepthOfField 0xD1d4
1459 #define PTP_DPC_CANON_EOS_Brightness 0xD1d5
1460 #define PTP_DPC_CANON_EOS_LensAdjustParams 0xD1d6
1461 #define PTP_DPC_CANON_EOS_EFComp 0xD1d7
1462 #define PTP_DPC_CANON_EOS_LensName 0xD1d8
1463 #define PTP_DPC_CANON_EOS_AEB 0xD1d9
1464 #define PTP_DPC_CANON_EOS_StroboSetting 0xD1da
1465 #define PTP_DPC_CANON_EOS_StroboWirelessSetting 0xD1db
1466 #define PTP_DPC_CANON_EOS_StroboFiring 0xD1dc
1467 #define PTP_DPC_CANON_EOS_LensID 0xD1dd
1468 
1469 /* Nikon extension device property codes */
1470 #define PTP_DPC_NIKON_ShootingBank 0xD010
1471 #define PTP_DPC_NIKON_ShootingBankNameA 0xD011
1472 #define PTP_DPC_NIKON_ShootingBankNameB 0xD012
1473 #define PTP_DPC_NIKON_ShootingBankNameC 0xD013
1474 #define PTP_DPC_NIKON_ShootingBankNameD 0xD014
1475 #define PTP_DPC_NIKON_ResetBank0 0xD015
1476 #define PTP_DPC_NIKON_RawCompression 0xD016
1477 #define PTP_DPC_NIKON_WhiteBalanceAutoBias 0xD017
1478 #define PTP_DPC_NIKON_WhiteBalanceTungstenBias 0xD018
1479 #define PTP_DPC_NIKON_WhiteBalanceFluorescentBias 0xD019
1480 #define PTP_DPC_NIKON_WhiteBalanceDaylightBias 0xD01A
1481 #define PTP_DPC_NIKON_WhiteBalanceFlashBias 0xD01B
1482 #define PTP_DPC_NIKON_WhiteBalanceCloudyBias 0xD01C
1483 #define PTP_DPC_NIKON_WhiteBalanceShadeBias 0xD01D
1484 #define PTP_DPC_NIKON_WhiteBalanceColorTemperature 0xD01E
1485 #define PTP_DPC_NIKON_WhiteBalancePresetNo 0xD01F
1486 #define PTP_DPC_NIKON_WhiteBalancePresetName0 0xD020
1487 #define PTP_DPC_NIKON_WhiteBalancePresetName1 0xD021
1488 #define PTP_DPC_NIKON_WhiteBalancePresetName2 0xD022
1489 #define PTP_DPC_NIKON_WhiteBalancePresetName3 0xD023
1490 #define PTP_DPC_NIKON_WhiteBalancePresetName4 0xD024
1491 #define PTP_DPC_NIKON_WhiteBalancePresetVal0 0xD025
1492 #define PTP_DPC_NIKON_WhiteBalancePresetVal1 0xD026
1493 #define PTP_DPC_NIKON_WhiteBalancePresetVal2 0xD027
1494 #define PTP_DPC_NIKON_WhiteBalancePresetVal3 0xD028
1495 #define PTP_DPC_NIKON_WhiteBalancePresetVal4 0xD029
1496 #define PTP_DPC_NIKON_ImageSharpening 0xD02A
1497 #define PTP_DPC_NIKON_ToneCompensation 0xD02B
1498 #define PTP_DPC_NIKON_ColorModel 0xD02C
1499 #define PTP_DPC_NIKON_HueAdjustment 0xD02D
1500 #define PTP_DPC_NIKON_NonCPULensDataFocalLength 0xD02E /* Set FMM Manual */
1501 #define PTP_DPC_NIKON_NonCPULensDataMaximumAperture 0xD02F /* Set F0 Manual */
1502 #define PTP_DPC_NIKON_ShootingMode 0xD030
1503 #define PTP_DPC_NIKON_JPEG_Compression_Policy 0xD031
1504 #define PTP_DPC_NIKON_ColorSpace 0xD032
1505 #define PTP_DPC_NIKON_AutoDXCrop 0xD033
1506 #define PTP_DPC_NIKON_VideoMode 0xD036
1507 #define PTP_DPC_NIKON_EffectMode 0xD037
1508 #define PTP_DPC_NIKON_CSMMenuBankSelect 0xD040
1509 #define PTP_DPC_NIKON_MenuBankNameA 0xD041
1510 #define PTP_DPC_NIKON_MenuBankNameB 0xD042
1511 #define PTP_DPC_NIKON_MenuBankNameC 0xD043
1512 #define PTP_DPC_NIKON_MenuBankNameD 0xD044
1513 #define PTP_DPC_NIKON_ResetBank 0xD045
1514 #define PTP_DPC_NIKON_A1AFCModePriority 0xD048
1515 #define PTP_DPC_NIKON_A2AFSModePriority 0xD049
1516 #define PTP_DPC_NIKON_A3GroupDynamicAF 0xD04A
1517 #define PTP_DPC_NIKON_A4AFActivation 0xD04B
1518 #define PTP_DPC_NIKON_FocusAreaIllumManualFocus 0xD04C
1519 #define PTP_DPC_NIKON_FocusAreaIllumContinuous 0xD04D
1520 #define PTP_DPC_NIKON_FocusAreaIllumWhenSelected 0xD04E
1521 #define PTP_DPC_NIKON_FocusAreaWrap 0xD04F /* area sel */
1522 #define PTP_DPC_NIKON_VerticalAFON 0xD050
1523 #define PTP_DPC_NIKON_AFLockOn 0xD051
1524 #define PTP_DPC_NIKON_FocusAreaZone 0xD052
1525 #define PTP_DPC_NIKON_EnableCopyright 0xD053
1526 #define PTP_DPC_NIKON_ISOAuto 0xD054
1527 #define PTP_DPC_NIKON_EVISOStep 0xD055
1528 #define PTP_DPC_NIKON_EVStep 0xD056 /* EV Step SS FN */
1529 #define PTP_DPC_NIKON_EVStepExposureComp 0xD057
1530 #define PTP_DPC_NIKON_ExposureCompensation 0xD058
1531 #define PTP_DPC_NIKON_CenterWeightArea 0xD059
1532 #define PTP_DPC_NIKON_ExposureBaseMatrix 0xD05A
1533 #define PTP_DPC_NIKON_ExposureBaseCenter 0xD05B
1534 #define PTP_DPC_NIKON_ExposureBaseSpot 0xD05C
1535 #define PTP_DPC_NIKON_LiveViewAFArea 0xD05D
1536 #define PTP_DPC_NIKON_AELockMode 0xD05E
1537 #define PTP_DPC_NIKON_AELAFLMode 0xD05F
1538 #define PTP_DPC_NIKON_LiveViewAFFocus 0xD061
1539 #define PTP_DPC_NIKON_MeterOff 0xD062
1540 #define PTP_DPC_NIKON_SelfTimer 0xD063
1541 #define PTP_DPC_NIKON_MonitorOff 0xD064
1542 #define PTP_DPC_NIKON_ImgConfTime 0xD065
1543 #define PTP_DPC_NIKON_AutoOffTimers 0xD066
1544 #define PTP_DPC_NIKON_AngleLevel 0xD067
1545 #define PTP_DPC_NIKON_D1ShootingSpeed 0xD068 /* continous speed low */
1546 #define PTP_DPC_NIKON_D2MaximumShots 0xD069
1547 #define PTP_DPC_NIKON_ExposureDelayMode 0xD06A
1548 #define PTP_DPC_NIKON_LongExposureNoiseReduction 0xD06B
1549 #define PTP_DPC_NIKON_FileNumberSequence 0xD06C
1550 #define PTP_DPC_NIKON_ControlPanelFinderRearControl 0xD06D
1551 #define PTP_DPC_NIKON_ControlPanelFinderViewfinder 0xD06E
1552 #define PTP_DPC_NIKON_D7Illumination 0xD06F
1553 #define PTP_DPC_NIKON_NrHighISO 0xD070
1554 #define PTP_DPC_NIKON_SHSET_CH_GUID_DISP 0xD071
1555 #define PTP_DPC_NIKON_ArtistName 0xD072
1556 #define PTP_DPC_NIKON_CopyrightInfo 0xD073
1557 #define PTP_DPC_NIKON_FlashSyncSpeed 0xD074
1558 #define PTP_DPC_NIKON_FlashShutterSpeed 0xD075 /* SB Low Limit */
1559 #define PTP_DPC_NIKON_E3AAFlashMode 0xD076
1560 #define PTP_DPC_NIKON_E4ModelingFlash 0xD077
1561 #define PTP_DPC_NIKON_BracketSet 0xD078 /* Bracket Type? */
1562 #define PTP_DPC_NIKON_E6ManualModeBracketing 0xD079 /* Bracket Factor? */
1563 #define PTP_DPC_NIKON_BracketOrder 0xD07A
1564 #define PTP_DPC_NIKON_E8AutoBracketSelection 0xD07B /* Bracket Method? */
1565 #define PTP_DPC_NIKON_BracketingSet 0xD07C
1566 #define PTP_DPC_NIKON_F1CenterButtonShootingMode 0xD080
1567 #define PTP_DPC_NIKON_CenterButtonPlaybackMode 0xD081
1568 #define PTP_DPC_NIKON_F2Multiselector 0xD082
1569 #define PTP_DPC_NIKON_F3PhotoInfoPlayback 0xD083 /* MultiSelector Dir */
1570 #define PTP_DPC_NIKON_F4AssignFuncButton 0xD084 /* CMD Dial Rotate */
1571 #define PTP_DPC_NIKON_F5CustomizeCommDials 0xD085 /* CMD Dial Change */
1572 #define PTP_DPC_NIKON_ReverseCommandDial 0xD086 /* CMD Dial FN Set */
1573 #define PTP_DPC_NIKON_ApertureSetting 0xD087 /* CMD Dial Active */
1574 #define PTP_DPC_NIKON_MenusAndPlayback 0xD088 /* CMD Dial Active */
1575 #define PTP_DPC_NIKON_F6ButtonsAndDials 0xD089 /* Universal Mode? */
1576 #define PTP_DPC_NIKON_NoCFCard 0xD08A /* Enable Shutter? */
1577 #define PTP_DPC_NIKON_CenterButtonZoomRatio 0xD08B
1578 #define PTP_DPC_NIKON_FunctionButton2 0xD08C
1579 #define PTP_DPC_NIKON_AFAreaPoint 0xD08D
1580 #define PTP_DPC_NIKON_NormalAFOn 0xD08E
1581 #define PTP_DPC_NIKON_CleanImageSensor 0xD08F
1582 #define PTP_DPC_NIKON_ImageCommentString 0xD090
1583 #define PTP_DPC_NIKON_ImageCommentEnable 0xD091
1584 #define PTP_DPC_NIKON_ImageRotation 0xD092
1585 #define PTP_DPC_NIKON_ManualSetLensNo 0xD093
1586 #define PTP_DPC_NIKON_MovScreenSize 0xD0A0
1587 #define PTP_DPC_NIKON_MovVoice 0xD0A1
1588 #define PTP_DPC_NIKON_MovMicrophone 0xD0A2
1589 #define PTP_DPC_NIKON_Bracketing 0xD0C0
1590 #define PTP_DPC_NIKON_AutoExposureBracketStep 0xD0C1
1591 #define PTP_DPC_NIKON_AutoExposureBracketProgram 0xD0C2
1592 #define PTP_DPC_NIKON_AutoExposureBracketCount 0xD0C3
1593 #define PTP_DPC_NIKON_WhiteBalanceBracketStep 0xD0C4
1594 #define PTP_DPC_NIKON_WhiteBalanceBracketProgram 0xD0C5
1595 #define PTP_DPC_NIKON_LensID 0xD0E0
1596 #define PTP_DPC_NIKON_LensSort 0xD0E1
1597 #define PTP_DPC_NIKON_LensType 0xD0E2
1598 #define PTP_DPC_NIKON_FocalLengthMin 0xD0E3
1599 #define PTP_DPC_NIKON_FocalLengthMax 0xD0E4
1600 #define PTP_DPC_NIKON_MaxApAtMinFocalLength 0xD0E5
1601 #define PTP_DPC_NIKON_MaxApAtMaxFocalLength 0xD0E6
1602 #define PTP_DPC_NIKON_FinderISODisp 0xD0F0
1603 #define PTP_DPC_NIKON_AutoOffPhoto 0xD0F2
1604 #define PTP_DPC_NIKON_AutoOffMenu 0xD0F3
1605 #define PTP_DPC_NIKON_AutoOffInfo 0xD0F4
1606 #define PTP_DPC_NIKON_SelfTimerShootNum 0xD0F5
1607 #define PTP_DPC_NIKON_VignetteCtrl 0xD0F7
1608 #define PTP_DPC_NIKON_AutoDistortionControl 0xD0F8
1609 #define PTP_DPC_NIKON_SceneMode 0xD0F9
1610 #define PTP_DPC_NIKON_ExposureTime 0xD100 /* Shutter Speed */
1611 #define PTP_DPC_NIKON_ACPower 0xD101
1612 #define PTP_DPC_NIKON_WarningStatus 0xD102
1613 #define PTP_DPC_NIKON_MaximumShots 0xD103 /* remain shots (in RAM buffer?) */
1614 #define PTP_DPC_NIKON_AFLockStatus 0xD104
1615 #define PTP_DPC_NIKON_AELockStatus 0xD105
1616 #define PTP_DPC_NIKON_FVLockStatus 0xD106
1617 #define PTP_DPC_NIKON_AutofocusLCDTopMode2 0xD107
1618 #define PTP_DPC_NIKON_AutofocusArea 0xD108
1619 #define PTP_DPC_NIKON_FlexibleProgram 0xD109
1620 #define PTP_DPC_NIKON_LightMeter 0xD10A /* Exposure Status */
1621 #define PTP_DPC_NIKON_RecordingMedia 0xD10B /* Card or SDRAM */
1622 #define PTP_DPC_NIKON_USBSpeed 0xD10C
1623 #define PTP_DPC_NIKON_CCDNumber 0xD10D
1624 #define PTP_DPC_NIKON_CameraOrientation 0xD10E
1625 #define PTP_DPC_NIKON_GroupPtnType 0xD10F
1626 #define PTP_DPC_NIKON_FNumberLock 0xD110
1627 #define PTP_DPC_NIKON_ExposureApertureLock 0xD111 /* shutterspeed lock*/
1628 #define PTP_DPC_NIKON_TVLockSetting 0xD112
1629 #define PTP_DPC_NIKON_AVLockSetting 0xD113
1630 #define PTP_DPC_NIKON_IllumSetting 0xD114
1631 #define PTP_DPC_NIKON_FocusPointBright 0xD115
1632 #define PTP_DPC_NIKON_ExternalFlashAttached 0xD120
1633 #define PTP_DPC_NIKON_ExternalFlashStatus 0xD121
1634 #define PTP_DPC_NIKON_ExternalFlashSort 0xD122
1635 #define PTP_DPC_NIKON_ExternalFlashMode 0xD123
1636 #define PTP_DPC_NIKON_ExternalFlashCompensation 0xD124
1637 #define PTP_DPC_NIKON_NewExternalFlashMode 0xD125
1638 #define PTP_DPC_NIKON_FlashExposureCompensation 0xD126
1639 #define PTP_DPC_NIKON_HDRMode 0xD130
1640 #define PTP_DPC_NIKON_HDRHighDynamic 0xD131
1641 #define PTP_DPC_NIKON_HDRSmoothing 0xD132
1642 #define PTP_DPC_NIKON_OptimizeImage 0xD140
1643 #define PTP_DPC_NIKON_Saturation 0xD142
1644 #define PTP_DPC_NIKON_BW_FillerEffect 0xD143
1645 #define PTP_DPC_NIKON_BW_Sharpness 0xD144
1646 #define PTP_DPC_NIKON_BW_Contrast 0xD145
1647 #define PTP_DPC_NIKON_BW_Setting_Type 0xD146
1648 #define PTP_DPC_NIKON_Slot2SaveMode 0xD148
1649 #define PTP_DPC_NIKON_RawBitMode 0xD149
1650 #define PTP_DPC_NIKON_ISOAutoTime 0xD14E
1651 #define PTP_DPC_NIKON_FlourescentType 0xD14F
1652 #define PTP_DPC_NIKON_TuneColourTemperature 0xD150
1653 #define PTP_DPC_NIKON_TunePreset0 0xD151
1654 #define PTP_DPC_NIKON_TunePreset1 0xD152
1655 #define PTP_DPC_NIKON_TunePreset2 0xD153
1656 #define PTP_DPC_NIKON_TunePreset3 0xD154
1657 #define PTP_DPC_NIKON_TunePreset4 0xD155
1658 #define PTP_DPC_NIKON_BeepOff 0xD160
1659 #define PTP_DPC_NIKON_AutofocusMode 0xD161
1660 #define PTP_DPC_NIKON_AFAssist 0xD163
1661 #define PTP_DPC_NIKON_PADVPMode 0xD164 /* iso auto time */
1662 #define PTP_DPC_NIKON_ImageReview 0xD165
1663 #define PTP_DPC_NIKON_AFAreaIllumination 0xD166
1664 #define PTP_DPC_NIKON_FlashMode 0xD167
1665 #define PTP_DPC_NIKON_FlashCommanderMode 0xD168
1666 #define PTP_DPC_NIKON_FlashSign 0xD169
1667 #define PTP_DPC_NIKON_ISO_Auto 0xD16A
1668 #define PTP_DPC_NIKON_RemoteTimeout 0xD16B
1669 #define PTP_DPC_NIKON_GridDisplay 0xD16C
1670 #define PTP_DPC_NIKON_FlashModeManualPower 0xD16D
1671 #define PTP_DPC_NIKON_FlashModeCommanderPower 0xD16E
1672 #define PTP_DPC_NIKON_AutoFP 0xD16F
1673 #define PTP_DPC_NIKON_CSMMenu 0xD180
1674 #define PTP_DPC_NIKON_WarningDisplay 0xD181
1675 #define PTP_DPC_NIKON_BatteryCellKind 0xD182
1676 #define PTP_DPC_NIKON_ISOAutoHiLimit 0xD183
1677 #define PTP_DPC_NIKON_DynamicAFArea 0xD184
1678 #define PTP_DPC_NIKON_ContinuousSpeedHigh 0xD186
1679 #define PTP_DPC_NIKON_InfoDispSetting 0xD187
1680 #define PTP_DPC_NIKON_PreviewButton 0xD189
1681 #define PTP_DPC_NIKON_PreviewButton2 0xD18A
1682 #define PTP_DPC_NIKON_AEAFLockButton2 0xD18B
1683 #define PTP_DPC_NIKON_IndicatorDisp 0xD18D
1684 #define PTP_DPC_NIKON_CellKindPriority 0xD18E
1685 #define PTP_DPC_NIKON_BracketingFramesAndSteps 0xD190
1686 #define PTP_DPC_NIKON_LiveViewMode 0xD1A0
1687 #define PTP_DPC_NIKON_LiveViewDriveMode 0xD1A1
1688 #define PTP_DPC_NIKON_LiveViewStatus 0xD1A2
1689 #define PTP_DPC_NIKON_LiveViewImageZoomRatio 0xD1A3
1690 #define PTP_DPC_NIKON_LiveViewProhibitCondition 0xD1A4
1691 #define PTP_DPC_NIKON_ExposureDisplayStatus 0xD1B0
1692 #define PTP_DPC_NIKON_ExposureIndicateStatus 0xD1B1
1693 #define PTP_DPC_NIKON_InfoDispErrStatus 0xD1B2
1694 #define PTP_DPC_NIKON_ExposureIndicateLightup 0xD1B3
1695 #define PTP_DPC_NIKON_FlashOpen 0xD1C0
1696 #define PTP_DPC_NIKON_FlashCharged 0xD1C1
1697 #define PTP_DPC_NIKON_FlashMRepeatValue 0xD1D0
1698 #define PTP_DPC_NIKON_FlashMRepeatCount 0xD1D1
1699 #define PTP_DPC_NIKON_FlashMRepeatInterval 0xD1D2
1700 #define PTP_DPC_NIKON_FlashCommandChannel 0xD1D3
1701 #define PTP_DPC_NIKON_FlashCommandSelfMode 0xD1D4
1702 #define PTP_DPC_NIKON_FlashCommandSelfCompensation 0xD1D5
1703 #define PTP_DPC_NIKON_FlashCommandSelfValue 0xD1D6
1704 #define PTP_DPC_NIKON_FlashCommandAMode 0xD1D7
1705 #define PTP_DPC_NIKON_FlashCommandACompensation 0xD1D8
1706 #define PTP_DPC_NIKON_FlashCommandAValue 0xD1D9
1707 #define PTP_DPC_NIKON_FlashCommandBMode 0xD1DA
1708 #define PTP_DPC_NIKON_FlashCommandBCompensation 0xD1DB
1709 #define PTP_DPC_NIKON_FlashCommandBValue 0xD1DC
1710 #define PTP_DPC_NIKON_ActivePicCtrlItem 0xD200
1711 #define PTP_DPC_NIKON_ChangePicCtrlItem 0xD201
1712 
1713 /* Fuji specific */
1714 #define PTP_DPC_FUJI_ColorTemperature 0xD017
1715 #define PTP_DPC_FUJI_Quality 0xD018
1716 #define PTP_DPC_FUJI_ReleaseMode 0xD201
1717 #define PTP_DPC_FUJI_FocusAreas 0xD206
1718 #define PTP_DPC_FUJI_AELock 0xD213
1719 #define PTP_DPC_FUJI_Aperture 0xD218
1720 #define PTP_DPC_FUJI_ShutterSpeed 0xD219
1721 
1722 /* Microsoft/MTP specific */
1723 #define PTP_DPC_MTP_SecureTime 0xD101
1724 #define PTP_DPC_MTP_DeviceCertificate 0xD102
1725 #define PTP_DPC_MTP_RevocationInfo 0xD103
1726 #define PTP_DPC_MTP_SynchronizationPartner 0xD401
1727 #define PTP_DPC_MTP_DeviceFriendlyName 0xD402
1728 #define PTP_DPC_MTP_VolumeLevel 0xD403
1729 #define PTP_DPC_MTP_DeviceIcon 0xD405
1730 #define PTP_DPC_MTP_SessionInitiatorInfo 0xD406
1731 #define PTP_DPC_MTP_PerceivedDeviceType 0xD407
1732 #define PTP_DPC_MTP_PlaybackRate 0xD410
1733 #define PTP_DPC_MTP_PlaybackObject 0xD411
1734 #define PTP_DPC_MTP_PlaybackContainerIndex 0xD412
1735 #define PTP_DPC_MTP_PlaybackPosition 0xD413
1736 #define PTP_DPC_MTP_PlaysForSureID 0xD131
1737 
1738 /* Zune specific property codes */
1739 #define PTP_DPC_MTP_Zune_UnknownVersion 0xD181
1740 
1741 /* Olympus */
1742 #define PTP_DPC_OLYMPUS_ResolutionMode 0xD102
1743 #define PTP_DPC_OLYMPUS_FocusPriority 0xD103
1744 #define PTP_DPC_OLYMPUS_DriveMode 0xD104
1745 #define PTP_DPC_OLYMPUS_DateTimeFormat 0xD105
1746 #define PTP_DPC_OLYMPUS_ExposureBiasStep 0xD106
1747 #define PTP_DPC_OLYMPUS_WBMode 0xD107
1748 #define PTP_DPC_OLYMPUS_OneTouchWB 0xD108
1749 #define PTP_DPC_OLYMPUS_ManualWB 0xD109
1750 #define PTP_DPC_OLYMPUS_ManualWBRBBias 0xD10A
1751 #define PTP_DPC_OLYMPUS_CustomWB 0xD10B
1752 #define PTP_DPC_OLYMPUS_CustomWBValue 0xD10C
1753 #define PTP_DPC_OLYMPUS_ExposureTimeEx 0xD10D
1754 #define PTP_DPC_OLYMPUS_BulbMode 0xD10E
1755 #define PTP_DPC_OLYMPUS_AntiMirrorMode 0xD10F
1756 #define PTP_DPC_OLYMPUS_AEBracketingFrame 0xD110
1757 #define PTP_DPC_OLYMPUS_AEBracketingStep 0xD111
1758 #define PTP_DPC_OLYMPUS_WBBracketingFrame 0xD112
1759 #define PTP_DPC_OLYMPUS_WBBracketingRBFrame 0xD112 /* dup ? */
1760 #define PTP_DPC_OLYMPUS_WBBracketingRBRange 0xD113
1761 #define PTP_DPC_OLYMPUS_WBBracketingGMFrame 0xD114
1762 #define PTP_DPC_OLYMPUS_WBBracketingGMRange 0xD115
1763 #define PTP_DPC_OLYMPUS_FLBracketingFrame 0xD118
1764 #define PTP_DPC_OLYMPUS_FLBracketingStep 0xD119
1765 #define PTP_DPC_OLYMPUS_FlashBiasCompensation 0xD11A
1766 #define PTP_DPC_OLYMPUS_ManualFocusMode 0xD11B
1767 #define PTP_DPC_OLYMPUS_RawSaveMode 0xD11D
1768 #define PTP_DPC_OLYMPUS_AUXLightMode 0xD11E
1769 #define PTP_DPC_OLYMPUS_LensSinkMode 0xD11F
1770 #define PTP_DPC_OLYMPUS_BeepStatus 0xD120
1771 #define PTP_DPC_OLYMPUS_ColorSpace 0xD122
1772 #define PTP_DPC_OLYMPUS_ColorMatching 0xD123
1773 #define PTP_DPC_OLYMPUS_Saturation 0xD124
1774 #define PTP_DPC_OLYMPUS_NoiseReductionPattern 0xD126
1775 #define PTP_DPC_OLYMPUS_NoiseReductionRandom 0xD127
1776 #define PTP_DPC_OLYMPUS_ShadingMode 0xD129
1777 #define PTP_DPC_OLYMPUS_ISOBoostMode 0xD12A
1778 #define PTP_DPC_OLYMPUS_ExposureIndexBiasStep 0xD12B
1779 #define PTP_DPC_OLYMPUS_FilterEffect 0xD12C
1780 #define PTP_DPC_OLYMPUS_ColorTune 0xD12D
1781 #define PTP_DPC_OLYMPUS_Language 0xD12E
1782 #define PTP_DPC_OLYMPUS_LanguageCode 0xD12F
1783 #define PTP_DPC_OLYMPUS_RecviewMode 0xD130
1784 #define PTP_DPC_OLYMPUS_SleepTime 0xD131
1785 #define PTP_DPC_OLYMPUS_ManualWBGMBias 0xD132
1786 #define PTP_DPC_OLYMPUS_AELAFLMode 0xD135
1787 #define PTP_DPC_OLYMPUS_AELButtonStatus 0xD136
1788 #define PTP_DPC_OLYMPUS_CompressionSettingEx 0xD137
1789 #define PTP_DPC_OLYMPUS_ToneMode 0xD139
1790 #define PTP_DPC_OLYMPUS_GradationMode 0xD13A
1791 #define PTP_DPC_OLYMPUS_DevelopMode 0xD13B
1792 #define PTP_DPC_OLYMPUS_ExtendInnerFlashMode 0xD13C
1793 #define PTP_DPC_OLYMPUS_OutputDeviceMode 0xD13D
1794 #define PTP_DPC_OLYMPUS_LiveViewMode 0xD13E
1795 #define PTP_DPC_OLYMPUS_LCDBacklight 0xD140
1796 #define PTP_DPC_OLYMPUS_CustomDevelop 0xD141
1797 #define PTP_DPC_OLYMPUS_GradationAutoBias 0xD142
1798 #define PTP_DPC_OLYMPUS_FlashRCMode 0xD143
1799 #define PTP_DPC_OLYMPUS_FlashRCGroupValue 0xD144
1800 #define PTP_DPC_OLYMPUS_FlashRCChannelValue 0xD145
1801 #define PTP_DPC_OLYMPUS_FlashRCFPMode 0xD146
1802 #define PTP_DPC_OLYMPUS_FlashRCPhotoChromicMode 0xD147
1803 #define PTP_DPC_OLYMPUS_FlashRCPhotoChromicBias 0xD148
1804 #define PTP_DPC_OLYMPUS_FlashRCPhotoChromicManualBias 0xD149
1805 #define PTP_DPC_OLYMPUS_FlashRCQuantityLightLevel 0xD14A
1806 #define PTP_DPC_OLYMPUS_FocusMeteringValue 0xD14B
1807 #define PTP_DPC_OLYMPUS_ISOBracketingFrame 0xD14C
1808 #define PTP_DPC_OLYMPUS_ISOBracketingStep 0xD14D
1809 #define PTP_DPC_OLYMPUS_BulbMFMode 0xD14E
1810 #define PTP_DPC_OLYMPUS_BurstFPSValue 0xD14F
1811 #define PTP_DPC_OLYMPUS_ISOAutoBaseValue 0xD150
1812 #define PTP_DPC_OLYMPUS_ISOAutoMaxValue 0xD151
1813 #define PTP_DPC_OLYMPUS_BulbLimiterValue 0xD152
1814 #define PTP_DPC_OLYMPUS_DPIMode 0xD153
1815 #define PTP_DPC_OLYMPUS_DPICustomValue 0xD154
1816 #define PTP_DPC_OLYMPUS_ResolutionValueSetting 0xD155
1817 #define PTP_DPC_OLYMPUS_AFTargetSize 0xD157
1818 #define PTP_DPC_OLYMPUS_LightSensorMode 0xD158
1819 #define PTP_DPC_OLYMPUS_AEBracket 0xD159
1820 #define PTP_DPC_OLYMPUS_WBRBBracket 0xD15A
1821 #define PTP_DPC_OLYMPUS_WBGMBracket 0xD15B
1822 #define PTP_DPC_OLYMPUS_FlashBracket 0xD15C
1823 #define PTP_DPC_OLYMPUS_ISOBracket 0xD15D
1824 #define PTP_DPC_OLYMPUS_MyModeStatus 0xD15E
1825 
1826 /* Casio EX-F1 */
1827 #define PTP_DPC_CASIO_MONITOR 0xD001
1828 #define PTP_DPC_CASIO_STORAGE 0xD002 //Not reported by DeviceInfo?
1829 #define PTP_DPC_CASIO_UNKNOWN_1 0xD004
1830 #define PTP_DPC_CASIO_UNKNOWN_2 0xD005
1831 #define PTP_DPC_CASIO_UNKNOWN_3 0xD007
1832 #define PTP_DPC_CASIO_RECORD_LIGHT 0xD008
1833 #define PTP_DPC_CASIO_UNKNOWN_4 0xD009
1834 #define PTP_DPC_CASIO_UNKNOWN_5 0xD00A
1835 #define PTP_DPC_CASIO_MOVIE_MODE 0xD00B
1836 #define PTP_DPC_CASIO_HD_SETTING 0xD00C
1837 #define PTP_DPC_CASIO_HS_SETTING 0xD00D
1838 #define PTP_DPC_CASIO_CS_HIGH_SPEED 0xD00F
1839 #define PTP_DPC_CASIO_CS_UPPER_LIMIT 0xD010
1840 #define PTP_DPC_CASIO_CS_SHOT 0xD011
1841 #define PTP_DPC_CASIO_UNKNOWN_6 0xD012
1842 #define PTP_DPC_CASIO_UNKNOWN_7 0xD013
1843 #define PTP_DPC_CASIO_UNKNOWN_8 0xD015
1844 #define PTP_DPC_CASIO_UNKNOWN_9 0xD017
1845 #define PTP_DPC_CASIO_UNKNOWN_10 0xD018
1846 #define PTP_DPC_CASIO_UNKNOWN_11 0xD019
1847 #define PTP_DPC_CASIO_UNKNOWN_12 0xD01A
1848 #define PTP_DPC_CASIO_UNKNOWN_13 0xD01B
1849 #define PTP_DPC_CASIO_UNKNOWN_14 0xD01C
1850 #define PTP_DPC_CASIO_UNKNOWN_15 0xD01D
1851 #define PTP_DPC_CASIO_UNKNOWN_16 0xD020
1852 #define PTP_DPC_CASIO_UNKNOWN_17 0xD030
1853 #define PTP_DPC_CASIO_UNKNOWN_18 0xD080
1854 
1855 /* MTP specific Object Properties */
1856 #define PTP_OPC_StorageID 0xDC01
1857 #define PTP_OPC_ObjectFormat 0xDC02
1858 #define PTP_OPC_ProtectionStatus 0xDC03
1859 #define PTP_OPC_ObjectSize 0xDC04
1860 #define PTP_OPC_AssociationType 0xDC05
1861 #define PTP_OPC_AssociationDesc 0xDC06
1862 #define PTP_OPC_ObjectFileName 0xDC07
1863 #define PTP_OPC_DateCreated 0xDC08
1864 #define PTP_OPC_DateModified 0xDC09
1865 #define PTP_OPC_Keywords 0xDC0A
1866 #define PTP_OPC_ParentObject 0xDC0B
1867 #define PTP_OPC_AllowedFolderContents 0xDC0C
1868 #define PTP_OPC_Hidden 0xDC0D
1869 #define PTP_OPC_SystemObject 0xDC0E
1870 #define PTP_OPC_PersistantUniqueObjectIdentifier 0xDC41
1871 #define PTP_OPC_SyncID 0xDC42
1872 #define PTP_OPC_PropertyBag 0xDC43
1873 #define PTP_OPC_Name 0xDC44
1874 #define PTP_OPC_CreatedBy 0xDC45
1875 #define PTP_OPC_Artist 0xDC46
1876 #define PTP_OPC_DateAuthored 0xDC47
1877 #define PTP_OPC_Description 0xDC48
1878 #define PTP_OPC_URLReference 0xDC49
1879 #define PTP_OPC_LanguageLocale 0xDC4A
1880 #define PTP_OPC_CopyrightInformation 0xDC4B
1881 #define PTP_OPC_Source 0xDC4C
1882 #define PTP_OPC_OriginLocation 0xDC4D
1883 #define PTP_OPC_DateAdded 0xDC4E
1884 #define PTP_OPC_NonConsumable 0xDC4F
1885 #define PTP_OPC_CorruptOrUnplayable 0xDC50
1886 #define PTP_OPC_ProducerSerialNumber 0xDC51
1887 #define PTP_OPC_RepresentativeSampleFormat 0xDC81
1888 #define PTP_OPC_RepresentativeSampleSize 0xDC82
1889 #define PTP_OPC_RepresentativeSampleHeight 0xDC83
1890 #define PTP_OPC_RepresentativeSampleWidth 0xDC84
1891 #define PTP_OPC_RepresentativeSampleDuration 0xDC85
1892 #define PTP_OPC_RepresentativeSampleData 0xDC86
1893 #define PTP_OPC_Width 0xDC87
1894 #define PTP_OPC_Height 0xDC88
1895 #define PTP_OPC_Duration 0xDC89
1896 #define PTP_OPC_Rating 0xDC8A
1897 #define PTP_OPC_Track 0xDC8B
1898 #define PTP_OPC_Genre 0xDC8C
1899 #define PTP_OPC_Credits 0xDC8D
1900 #define PTP_OPC_Lyrics 0xDC8E
1901 #define PTP_OPC_SubscriptionContentID 0xDC8F
1902 #define PTP_OPC_ProducedBy 0xDC90
1903 #define PTP_OPC_UseCount 0xDC91
1904 #define PTP_OPC_SkipCount 0xDC92
1905 #define PTP_OPC_LastAccessed 0xDC93
1906 #define PTP_OPC_ParentalRating 0xDC94
1907 #define PTP_OPC_MetaGenre 0xDC95
1908 #define PTP_OPC_Composer 0xDC96
1909 #define PTP_OPC_EffectiveRating 0xDC97
1910 #define PTP_OPC_Subtitle 0xDC98
1911 #define PTP_OPC_OriginalReleaseDate 0xDC99
1912 #define PTP_OPC_AlbumName 0xDC9A
1913 #define PTP_OPC_AlbumArtist 0xDC9B
1914 #define PTP_OPC_Mood 0xDC9C
1915 #define PTP_OPC_DRMStatus 0xDC9D
1916 #define PTP_OPC_SubDescription 0xDC9E
1917 #define PTP_OPC_IsCropped 0xDCD1
1918 #define PTP_OPC_IsColorCorrected 0xDCD2
1919 #define PTP_OPC_ImageBitDepth 0xDCD3
1920 #define PTP_OPC_Fnumber 0xDCD4
1921 #define PTP_OPC_ExposureTime 0xDCD5
1922 #define PTP_OPC_ExposureIndex 0xDCD6
1923 #define PTP_OPC_DisplayName 0xDCE0
1924 #define PTP_OPC_BodyText 0xDCE1
1925 #define PTP_OPC_Subject 0xDCE2
1926 #define PTP_OPC_Priority 0xDCE3
1927 #define PTP_OPC_GivenName 0xDD00
1928 #define PTP_OPC_MiddleNames 0xDD01
1929 #define PTP_OPC_FamilyName 0xDD02
1930 #define PTP_OPC_Prefix 0xDD03
1931 #define PTP_OPC_Suffix 0xDD04
1932 #define PTP_OPC_PhoneticGivenName 0xDD05
1933 #define PTP_OPC_PhoneticFamilyName 0xDD06
1934 #define PTP_OPC_EmailPrimary 0xDD07
1935 #define PTP_OPC_EmailPersonal1 0xDD08
1936 #define PTP_OPC_EmailPersonal2 0xDD09
1937 #define PTP_OPC_EmailBusiness1 0xDD0A
1938 #define PTP_OPC_EmailBusiness2 0xDD0B
1939 #define PTP_OPC_EmailOthers 0xDD0C
1940 #define PTP_OPC_PhoneNumberPrimary 0xDD0D
1941 #define PTP_OPC_PhoneNumberPersonal 0xDD0E
1942 #define PTP_OPC_PhoneNumberPersonal2 0xDD0F
1943 #define PTP_OPC_PhoneNumberBusiness 0xDD10
1944 #define PTP_OPC_PhoneNumberBusiness2 0xDD11
1945 #define PTP_OPC_PhoneNumberMobile 0xDD12
1946 #define PTP_OPC_PhoneNumberMobile2 0xDD13
1947 #define PTP_OPC_FaxNumberPrimary 0xDD14
1948 #define PTP_OPC_FaxNumberPersonal 0xDD15
1949 #define PTP_OPC_FaxNumberBusiness 0xDD16
1950 #define PTP_OPC_PagerNumber 0xDD17
1951 #define PTP_OPC_PhoneNumberOthers 0xDD18
1952 #define PTP_OPC_PrimaryWebAddress 0xDD19
1953 #define PTP_OPC_PersonalWebAddress 0xDD1A
1954 #define PTP_OPC_BusinessWebAddress 0xDD1B
1955 #define PTP_OPC_InstantMessengerAddress 0xDD1C
1956 #define PTP_OPC_InstantMessengerAddress2 0xDD1D
1957 #define PTP_OPC_InstantMessengerAddress3 0xDD1E
1958 #define PTP_OPC_PostalAddressPersonalFull 0xDD1F
1959 #define PTP_OPC_PostalAddressPersonalFullLine1 0xDD20
1960 #define PTP_OPC_PostalAddressPersonalFullLine2 0xDD21
1961 #define PTP_OPC_PostalAddressPersonalFullCity 0xDD22
1962 #define PTP_OPC_PostalAddressPersonalFullRegion 0xDD23
1963 #define PTP_OPC_PostalAddressPersonalFullPostalCode 0xDD24
1964 #define PTP_OPC_PostalAddressPersonalFullCountry 0xDD25
1965 #define PTP_OPC_PostalAddressBusinessFull 0xDD26
1966 #define PTP_OPC_PostalAddressBusinessLine1 0xDD27
1967 #define PTP_OPC_PostalAddressBusinessLine2 0xDD28
1968 #define PTP_OPC_PostalAddressBusinessCity 0xDD29
1969 #define PTP_OPC_PostalAddressBusinessRegion 0xDD2A
1970 #define PTP_OPC_PostalAddressBusinessPostalCode 0xDD2B
1971 #define PTP_OPC_PostalAddressBusinessCountry 0xDD2C
1972 #define PTP_OPC_PostalAddressOtherFull 0xDD2D
1973 #define PTP_OPC_PostalAddressOtherLine1 0xDD2E
1974 #define PTP_OPC_PostalAddressOtherLine2 0xDD2F
1975 #define PTP_OPC_PostalAddressOtherCity 0xDD30
1976 #define PTP_OPC_PostalAddressOtherRegion 0xDD31
1977 #define PTP_OPC_PostalAddressOtherPostalCode 0xDD32
1978 #define PTP_OPC_PostalAddressOtherCountry 0xDD33
1979 #define PTP_OPC_OrganizationName 0xDD34
1980 #define PTP_OPC_PhoneticOrganizationName 0xDD35
1981 #define PTP_OPC_Role 0xDD36
1982 #define PTP_OPC_Birthdate 0xDD37
1983 #define PTP_OPC_MessageTo 0xDD40
1984 #define PTP_OPC_MessageCC 0xDD41
1985 #define PTP_OPC_MessageBCC 0xDD42
1986 #define PTP_OPC_MessageRead 0xDD43
1987 #define PTP_OPC_MessageReceivedTime 0xDD44
1988 #define PTP_OPC_MessageSender 0xDD45
1989 #define PTP_OPC_ActivityBeginTime 0xDD50
1990 #define PTP_OPC_ActivityEndTime 0xDD51
1991 #define PTP_OPC_ActivityLocation 0xDD52
1992 #define PTP_OPC_ActivityRequiredAttendees 0xDD54
1993 #define PTP_OPC_ActivityOptionalAttendees 0xDD55
1994 #define PTP_OPC_ActivityResources 0xDD56
1995 #define PTP_OPC_ActivityAccepted 0xDD57
1996 #define PTP_OPC_Owner 0xDD5D
1997 #define PTP_OPC_Editor 0xDD5E
1998 #define PTP_OPC_Webmaster 0xDD5F
1999 #define PTP_OPC_URLSource 0xDD60
2000 #define PTP_OPC_URLDestination 0xDD61
2001 #define PTP_OPC_TimeBookmark 0xDD62
2002 #define PTP_OPC_ObjectBookmark 0xDD63
2003 #define PTP_OPC_ByteBookmark 0xDD64
2004 #define PTP_OPC_LastBuildDate 0xDD70
2005 #define PTP_OPC_TimetoLive 0xDD71
2006 #define PTP_OPC_MediaGUID 0xDD72
2007 #define PTP_OPC_TotalBitRate 0xDE91
2008 #define PTP_OPC_BitRateType 0xDE92
2009 #define PTP_OPC_SampleRate 0xDE93
2010 #define PTP_OPC_NumberOfChannels 0xDE94
2011 #define PTP_OPC_AudioBitDepth 0xDE95
2012 #define PTP_OPC_ScanDepth 0xDE97
2013 #define PTP_OPC_AudioWAVECodec 0xDE99
2014 #define PTP_OPC_AudioBitRate 0xDE9A
2015 #define PTP_OPC_VideoFourCCCodec 0xDE9B
2016 #define PTP_OPC_VideoBitRate 0xDE9C
2017 #define PTP_OPC_FramesPerThousandSeconds 0xDE9D
2018 #define PTP_OPC_KeyFrameDistance 0xDE9E
2019 #define PTP_OPC_BufferSize 0xDE9F
2020 #define PTP_OPC_EncodingQuality 0xDEA0
2021 #define PTP_OPC_EncodingProfile 0xDEA1
2022 #define PTP_OPC_BuyFlag 0xD901
2023 
2024 /* WiFi Provisioning MTP Extension property codes */
2025 #define PTP_OPC_WirelessConfigurationFile 0xB104
2026 
2027 /* Device Property Form Flag */
2028 
2029 #define PTP_DPFF_None 0x00
2030 #define PTP_DPFF_Range 0x01
2031 #define PTP_DPFF_Enumeration 0x02
2032 
2033 /* Object Property Codes used by MTP (first 3 are same as DPFF codes) */
2034 #define PTP_OPFF_None 0x00
2035 #define PTP_OPFF_Range 0x01
2036 #define PTP_OPFF_Enumeration 0x02
2037 #define PTP_OPFF_DateTime 0x03
2038 #define PTP_OPFF_FixedLengthArray 0x04
2039 #define PTP_OPFF_RegularExpression 0x05
2040 #define PTP_OPFF_ByteArray 0x06
2041 #define PTP_OPFF_LongString 0xFF
2042 
2043 /* Device Property GetSet type */
2044 #define PTP_DPGS_Get 0x00
2045 #define PTP_DPGS_GetSet 0x01
2046 
2047 /* Glue stuff starts here */
2048 
2049 typedef struct _PTPParams PTPParams;
2050 
2051 
2052 typedef uint16_t (* PTPDataGetFunc) (PTPParams* params, void*priv,
2053  unsigned long wantlen,
2054  unsigned char *data, unsigned long *gotlen);
2055 
2056 typedef uint16_t (* PTPDataPutFunc) (PTPParams* params, void*priv,
2057  unsigned long sendlen,
2058  unsigned char *data, unsigned long *putlen);
2059 typedef struct _PTPDataHandler {
2060  PTPDataGetFunc getfunc;
2061  PTPDataPutFunc putfunc;
2062  void *priv;
2063 } PTPDataHandler;
2064 
2065 /*
2066  * This functions take PTP oriented arguments and send them over an
2067  * appropriate data layer doing byteorder conversion accordingly.
2068  */
2069 typedef uint16_t (* PTPIOSendReq) (PTPParams* params, PTPContainer* req);
2070 typedef uint16_t (* PTPIOSendData) (PTPParams* params, PTPContainer* ptp,
2071  unsigned long size, PTPDataHandler*getter);
2072 
2073 typedef uint16_t (* PTPIOGetResp) (PTPParams* params, PTPContainer* resp);
2074 typedef uint16_t (* PTPIOGetData) (PTPParams* params, PTPContainer* ptp,
2075  PTPDataHandler *putter);
2076 typedef uint16_t (* PTPIOCancelReq) (PTPParams* params, uint32_t transaction_id);
2077 
2078 /* debug functions */
2079 typedef void (* PTPErrorFunc) (void *data, const char *format, va_list args)
2080 #if (__GNUC__ >= 3)
2081  __attribute__((__format__(printf,2,0)))
2082 #endif
2083 ;
2084 typedef void (* PTPDebugFunc) (void *data, const char *format, va_list args)
2085 #if (__GNUC__ >= 3)
2086  __attribute__((__format__(printf,2,0)))
2087 #endif
2088 ;
2089 
2090 struct _PTPObject {
2091  uint32_t oid;
2092  unsigned int flags;
2093 #define PTPOBJECT_OBJECTINFO_LOADED (1<<0)
2094 #define PTPOBJECT_CANONFLAGS_LOADED (1<<1)
2095 #define PTPOBJECT_MTPPROPLIST_LOADED (1<<2)
2096 #define PTPOBJECT_DIRECTORY_LOADED (1<<3)
2097 #define PTPOBJECT_PARENTOBJECT_LOADED (1<<4)
2098 #define PTPOBJECT_STORAGEID_LOADED (1<<5)
2099 
2100  PTPObjectInfo oi;
2101  uint32_t canon_flags;
2102  MTPProperties *mtpprops;
2103  int nrofmtpprops;
2104 };
2105 typedef struct _PTPObject PTPObject;
2106 
2107 struct _PTPParams {
2108  /* device flags */
2109  uint32_t device_flags;
2110 
2111  /* data layer byteorder */
2112  uint8_t byteorder;
2113  uint16_t maxpacketsize;
2114 
2115  /* PTP IO: Custom IO functions */
2116  PTPIOSendReq sendreq_func;
2117  PTPIOSendData senddata_func;
2118  PTPIOGetResp getresp_func;
2119  PTPIOGetData getdata_func;
2120  PTPIOGetResp event_check;
2121  PTPIOGetResp event_wait;
2122  PTPIOCancelReq cancelreq_func;
2123 
2124  /* Custom error and debug function */
2125  PTPErrorFunc error_func;
2126  PTPDebugFunc debug_func;
2127 
2128  /* Data passed to above functions */
2129  void *data;
2130 
2131  /* ptp transaction ID */
2132  uint32_t transaction_id;
2133  /* ptp session ID */
2134  uint32_t session_id;
2135 
2136  /* PTP IO: if we have MTP style split header/data transfers */
2137  int split_header_data;
2138  int ocs64; /* 64bit objectsize */
2139 
2140  /* PTP: internal structures used by ptp driver */
2141  PTPObject *objects;
2142  int nrofobjects;
2143 
2144  PTPDeviceInfo deviceinfo;
2145 
2146  /* PTP: the current event queue */
2147  PTPContainer *events;
2148  int nrofevents;
2149 
2150  /* PTP: Canon specific flags list */
2151  PTPCanon_Property *canon_props;
2152  int nrofcanon_props;
2153  int canon_viewfinder_on;
2154  int canon_event_mode;
2155 
2156  /* PTP: Canon EOS event queue */
2157  PTPCanon_changes_entry *backlogentries;
2158  int nrofbacklogentries;
2159  int eos_captureenabled;
2160  int eos_viewfinderenabled;
2161  int eos_camerastatus;
2162 
2163  /* PTP: Wifi profiles */
2164  uint8_t wifi_profiles_version;
2165  uint8_t wifi_profiles_number;
2166  PTPNIKONWifiProfile *wifi_profiles;
2167 
2168  /* IO: PTP/IP related data */
2169  int cmdfd, evtfd;
2170  uint8_t cameraguid[16];
2171  uint32_t eventpipeid;
2172  char *cameraname;
2173 
2174  /* Olympus UMS wrapping related data */
2175  PTPDeviceInfo outer_deviceinfo;
2176  char *olympus_cmd;
2177  char *olympus_reply;
2178 
2179 #ifdef HAVE_ICONV
2180  /* PTP: iconv converters */
2181  iconv_t cd_locale_to_ucs2;
2182  iconv_t cd_ucs2_to_locale;
2183 #endif
2184 
2185  /* IO: Sometimes the response packet get send in the dataphase
2186  * too. This only happens for a Samsung player now.
2187  */
2188  uint8_t *response_packet;
2189  uint16_t response_packet_size;
2190 };
2191 
2192 /* last, but not least - ptp functions */
2193 uint16_t ptp_usb_sendreq (PTPParams* params, PTPContainer* req);
2194 uint16_t ptp_usb_senddata (PTPParams* params, PTPContainer* ptp,
2195  unsigned long size, PTPDataHandler *handler);
2196 uint16_t ptp_usb_getresp (PTPParams* params, PTPContainer* resp);
2197 uint16_t ptp_usb_getdata (PTPParams* params, PTPContainer* ptp,
2198  PTPDataHandler *handler);
2199 uint16_t ptp_usb_event_check (PTPParams* params, PTPContainer* event);
2200 uint16_t ptp_usb_event_wait (PTPParams* params, PTPContainer* event);
2201 
2202 uint16_t ptp_usb_control_get_extended_event_data (PTPParams *params, char *buffer, int *size);
2203 uint16_t ptp_usb_control_device_reset_request (PTPParams *params);
2204 uint16_t ptp_usb_control_get_device_status (PTPParams *params, char *buffer, int *size);
2205 uint16_t ptp_usb_control_cancel_request (PTPParams *params, uint32_t transid);
2206 
2207 
2208 int ptp_ptpip_connect (PTPParams* params, const char *port);
2209 uint16_t ptp_ptpip_sendreq (PTPParams* params, PTPContainer* req);
2210 uint16_t ptp_ptpip_senddata (PTPParams* params, PTPContainer* ptp,
2211  unsigned long size, PTPDataHandler *handler);
2212 uint16_t ptp_ptpip_getresp (PTPParams* params, PTPContainer* resp);
2213 uint16_t ptp_ptpip_getdata (PTPParams* params, PTPContainer* ptp,
2214  PTPDataHandler *handler);
2215 uint16_t ptp_ptpip_event_wait (PTPParams* params, PTPContainer* event);
2216 uint16_t ptp_ptpip_event_check (PTPParams* params, PTPContainer* event);
2217 
2218 uint16_t ptp_getdeviceinfo (PTPParams* params, PTPDeviceInfo* deviceinfo);
2219 
2220 uint16_t ptp_generic_no_data (PTPParams* params, uint16_t opcode, unsigned int cnt, ...);
2221 
2222 uint16_t ptp_opensession (PTPParams *params, uint32_t session);
2223 
2232 #define ptp_closesession(params) ptp_generic_no_data(params,PTP_OC_CloseSession,0)
2233 
2242 #define ptp_resetdevice(params) ptp_generic_no_data(params,PTP_OC_ResetDevice,0)
2243 
2244 uint16_t ptp_getstorageids (PTPParams* params, PTPStorageIDs* storageids);
2245 uint16_t ptp_getstorageinfo (PTPParams* params, uint32_t storageid,
2246  PTPStorageInfo* storageinfo);
2256 #define ptp_formatstore(params,storageid) ptp_generic_no_data(params,PTP_OC_FormatStore,1,storageid)
2257 
2258 uint16_t ptp_getobjecthandles (PTPParams* params, uint32_t storage,
2259  uint32_t objectformatcode,
2260  uint32_t associationOH,
2261  PTPObjectHandles* objecthandles);
2262 
2263 
2264 uint16_t ptp_getnumobjects (PTPParams* params, uint32_t storage,
2265  uint32_t objectformatcode,
2266  uint32_t associationOH,
2267  uint32_t* numobs);
2268 
2269 uint16_t ptp_getobjectinfo (PTPParams *params, uint32_t handle,
2270  PTPObjectInfo* objectinfo);
2271 
2272 uint16_t ptp_getobject (PTPParams *params, uint32_t handle,
2273  unsigned char** object);
2274 uint16_t ptp_getobject_tofd (PTPParams* params, uint32_t handle, int fd);
2275 uint16_t ptp_getobject_to_handler (PTPParams* params, uint32_t handle, PTPDataHandler*);
2276 uint16_t ptp_getpartialobject (PTPParams* params, uint32_t handle, uint32_t offset,
2277  uint32_t maxbytes, unsigned char** object,
2278  uint32_t *len);
2279 uint16_t ptp_getthumb (PTPParams *params, uint32_t handle,
2280  unsigned char** object, unsigned int *len);
2281 
2282 uint16_t ptp_deleteobject (PTPParams* params, uint32_t handle,
2283  uint32_t ofc);
2284 
2285 uint16_t ptp_sendobjectinfo (PTPParams* params, uint32_t* store,
2286  uint32_t* parenthandle, uint32_t* handle,
2287  PTPObjectInfo* objectinfo);
2298 #define ptp_setobjectprotection(params,oid,newprot) ptp_generic_no_data(params,PTP_OC_SetObjectProtection,2,oid,newprot)
2299 uint16_t ptp_sendobject (PTPParams* params, unsigned char* object,
2300  uint32_t size);
2301 uint16_t ptp_sendobject_fromfd (PTPParams* params, int fd, uint32_t size);
2302 uint16_t ptp_sendobject_from_handler (PTPParams* params, PTPDataHandler*, uint32_t size);
2317 #define ptp_initiatecapture(params,storageid,ofc) ptp_generic_no_data(params,PTP_OC_InitiateCapture,2,storageid,ofc)
2318 
2319 uint16_t ptp_getdevicepropdesc (PTPParams* params, uint16_t propcode,
2320  PTPDevicePropDesc *devicepropertydesc);
2321 uint16_t ptp_getdevicepropvalue (PTPParams* params, uint16_t propcode,
2322  PTPPropertyValue* value, uint16_t datatype);
2323 uint16_t ptp_setdevicepropvalue (PTPParams* params, uint16_t propcode,
2324  PTPPropertyValue* value, uint16_t datatype);
2325 uint16_t ptp_getfilesystemmanifest (PTPParams* params, uint32_t storage,
2326  uint32_t objectformatcode, uint32_t associationOH,
2327  unsigned char** data);
2328 
2329 
2330 
2331 uint16_t ptp_check_event (PTPParams *params);
2332 int ptp_get_one_event (PTPParams *params, PTPContainer *evt);
2333 uint16_t ptp_check_eos_events (PTPParams *params);
2334 int ptp_get_one_eos_event (PTPParams *params, PTPCanon_changes_entry *entry);
2335 
2336 
2337 /* Microsoft MTP extensions */
2338 uint16_t ptp_mtp_getobjectpropdesc (PTPParams* params, uint16_t opc, uint16_t ofc,
2339  PTPObjectPropDesc *objectpropertydesc);
2340 uint16_t ptp_mtp_getobjectpropvalue (PTPParams* params, uint32_t oid, uint16_t opc,
2341  PTPPropertyValue *value, uint16_t datatype);
2342 uint16_t ptp_mtp_setobjectpropvalue (PTPParams* params, uint32_t oid, uint16_t opc,
2343  PTPPropertyValue *value, uint16_t datatype);
2344 uint16_t ptp_mtp_getobjectreferences (PTPParams* params, uint32_t handle, uint32_t** ohArray, uint32_t* arraylen);
2345 uint16_t ptp_mtp_setobjectreferences (PTPParams* params, uint32_t handle, uint32_t* ohArray, uint32_t arraylen);
2346 uint16_t ptp_mtp_getobjectproplist (PTPParams* params, uint32_t handle, MTPProperties **props, int *nrofprops);
2347 uint16_t ptp_mtp_getobjectproplist_single (PTPParams* params, uint32_t handle, MTPProperties **props, int *nrofprops);
2348 uint16_t ptp_mtp_sendobjectproplist (PTPParams* params, uint32_t* store, uint32_t* parenthandle, uint32_t* handle,
2349  uint16_t objecttype, uint64_t objectsize, MTPProperties *props, int nrofprops);
2350 uint16_t ptp_mtp_setobjectproplist (PTPParams* params, MTPProperties *props, int nrofprops);
2351 
2352 /* Microsoft MTPZ (Zune) extensions */
2353 uint16_t ptp_mtpz_sendwmdrmpdapprequest (PTPParams*, unsigned char *, uint32_t);
2354 #define ptp_mtpz_resethandshake(params) ptp_generic_no_data(params, PTP_OC_MTP_WMDRMPD_EndTrustedAppSession, 0)
2355 uint16_t ptp_mtpz_getwmdrmpdappresponse (PTPParams*, unsigned char **, uint32_t*);
2356 #define ptp_mtpz_wmdrmpd_enabletrustedfilesoperations(params,hash1,hash2,hash3,hash4) \
2357  ptp_generic_no_data(params, PTP_OC_MTP_WMDRMPD_EnableTrustedFilesOperations, 4,\
2358  hash1, hash2, hash3, hash4)
2359 
2360 /* Eastman Kodak extensions */
2361 uint16_t ptp_ek_9007 (PTPParams* params, unsigned char **serial, unsigned int *size);
2362 uint16_t ptp_ek_9009 (PTPParams* params, uint32_t*, uint32_t*);
2363 uint16_t ptp_ek_900c (PTPParams* params, unsigned char **serial, unsigned int *size);
2364 uint16_t ptp_ek_getserial (PTPParams* params, unsigned char **serial, unsigned int *size);
2365 uint16_t ptp_ek_setserial (PTPParams* params, unsigned char *serial, unsigned int size);
2366 uint16_t ptp_ek_settext (PTPParams* params, PTPEKTextParams *text);
2367 uint16_t ptp_ek_sendfileobjectinfo (PTPParams* params, uint32_t* store,
2368  uint32_t* parenthandle, uint32_t* handle,
2369  PTPObjectInfo* objectinfo);
2370 uint16_t ptp_ek_sendfileobject (PTPParams* params, unsigned char* object,
2371  uint32_t size);
2372 uint16_t ptp_ek_sendfileobject_from_handler (PTPParams* params, PTPDataHandler*,
2373  uint32_t size);
2374 
2375 /* Canon PTP extensions */
2376 #define ptp_canon_9012(params) ptp_generic_no_data(params,0x9012,0)
2377 uint16_t ptp_canon_gettreeinfo (PTPParams* params, uint32_t* out);
2378 uint16_t ptp_canon_gettreesize (PTPParams* params, PTPCanon_directtransfer_entry**, unsigned int*cnt);
2379 uint16_t ptp_canon_getpartialobjectinfo (PTPParams* params, uint32_t handle,
2380  uint32_t p2, uint32_t* size, uint32_t* rp2);
2381 
2382 uint16_t ptp_canon_get_mac_address (PTPParams* params, unsigned char **mac);
2395 #define ptp_canon_startshootingmode(params) ptp_generic_no_data(params,PTP_OC_CANON_InitiateReleaseControl,0)
2396 
2409 #define ptp_canon_endshootingmode(params) ptp_generic_no_data(params,PTP_OC_CANON_TerminateReleaseControl,0)
2410 
2421 #define ptp_canon_viewfinderon(params) ptp_generic_no_data(params,PTP_OC_CANON_ViewfinderOn,0)
2422 
2434 #define ptp_canon_viewfinderoff(params) ptp_generic_no_data(params,PTP_OC_CANON_ViewfinderOff,0)
2435 
2447 #define PTP_CANON_RESET_AE 0x1
2448 #define PTP_CANON_RESET_AF 0x2
2449 #define PTP_CANON_RESET_AWB 0x4
2450 #define ptp_canon_reset_aeafawb(params,flags) ptp_generic_no_data(params,PTP_OC_CANON_DoAeAfAwb,1,flags)
2451 uint16_t ptp_canon_checkevent (PTPParams* params,
2452  PTPContainer* event, int* isevent);
2465 #define ptp_canon_focuslock(params) ptp_generic_no_data(params,PTP_OC_CANON_FocusLock,0)
2466 
2478 #define ptp_canon_focusunlock(params) ptp_generic_no_data(params,PTP_OC_CANON_FocusUnlock,0)
2479 
2489 #define ptp_canon_keepdeviceon(params) ptp_generic_no_data(params,PTP_OC_CANON_KeepDeviceOn,0)
2490 
2500 #define ptp_canon_eos_keepdeviceon(params) ptp_generic_no_data(params,PTP_OC_CANON_EOS_KeepDeviceOn,0)
2501 
2518 #define ptp_canon_initiatecaptureinmemory(params) ptp_generic_no_data(params,PTP_OC_CANON_InitiateCaptureInMemory,0)
2519 
2529 #define ptp_canon_eos_requestdevicepropvalue(params,prop) ptp_generic_no_data(params,PTP_OC_CANON_EOS_RequestDevicePropValue,1,prop)
2530 uint16_t ptp_canon_eos_capture (PTPParams* params, uint32_t *result);
2531 uint16_t ptp_canon_eos_getevent (PTPParams* params, PTPCanon_changes_entry **entries, int *nrofentries);
2532 uint16_t ptp_canon_getpartialobject (PTPParams* params, uint32_t handle,
2533  uint32_t offset, uint32_t size,
2534  uint32_t pos, unsigned char** block,
2535  uint32_t* readnum);
2536 uint16_t ptp_canon_getviewfinderimage (PTPParams* params, unsigned char** image,
2537  uint32_t* size);
2538 uint16_t ptp_canon_getchanges (PTPParams* params, uint16_t** props,
2539  uint32_t* propnum);
2540 uint16_t ptp_canon_getobjectinfo (PTPParams* params, uint32_t store,
2541  uint32_t p2, uint32_t parenthandle,
2542  uint32_t handle,
2543  PTPCANONFolderEntry** entries,
2544  uint32_t* entnum);
2545 uint16_t ptp_canon_eos_getdeviceinfo (PTPParams* params, PTPCanonEOSDeviceInfo*di);
2556 #define ptp_canon_eos_setuilock(params) ptp_generic_no_data(params,PTP_OC_CANON_EOS_SetUILock,0)
2557 
2567 #define ptp_canon_eos_resetuilock(params) ptp_generic_no_data(params,PTP_OC_CANON_EOS_ResetUILock,0)
2568 
2578 #define ptp_canon_eos_start_viewfinder(params) ptp_generic_no_data(params,PTP_OC_CANON_EOS_InitiateViewfinder,0)
2579 
2589 #define ptp_canon_eos_end_viewfinder(params) ptp_generic_no_data(params,PTP_OC_CANON_EOS_TerminateViewfinder,0)
2590 uint16_t ptp_canon_eos_get_viewfinder_image (PTPParams* params, unsigned char **data, unsigned int *size);
2591 uint16_t ptp_canon_eos_get_viewfinder_image_handler (PTPParams* params, PTPDataHandler*);
2592 uint16_t ptp_canon_get_objecthandle_by_name (PTPParams* params, char* name, uint32_t* objectid);
2593 uint16_t ptp_canon_get_directory (PTPParams* params, PTPObjectHandles *handles, PTPObjectInfo **oinfos, uint32_t **flags);
2604 #define ptp_canon_setobjectarchive(params,oid,flags) ptp_generic_no_data(params,PTP_OC_CANON_SetObjectArchive,2,oid,flags)
2605 uint16_t ptp_canon_get_customize_data (PTPParams* params, uint32_t themenr,
2606  unsigned char **data, unsigned int *size);
2607 uint16_t ptp_canon_getpairinginfo (PTPParams* params, uint32_t nr, unsigned char**, unsigned int*);
2608 
2609 uint16_t ptp_canon_eos_getstorageids (PTPParams* params, PTPStorageIDs* storageids);
2610 uint16_t ptp_canon_eos_getstorageinfo (PTPParams* params, uint32_t p1, unsigned char**, unsigned int*);
2611 uint16_t ptp_canon_eos_getpartialobject (PTPParams* params, uint32_t oid, uint32_t off, uint32_t xsize, unsigned char**data);
2612 uint16_t ptp_canon_eos_getobjectinfoex (PTPParams* params, uint32_t storageid, uint32_t objectid, uint32_t unk,
2613  PTPCANONFolderEntry **entries, unsigned int *nrofentries);
2614 uint16_t ptp_canon_eos_setdevicepropvalueex (PTPParams* params, unsigned char* data, unsigned int size);
2615 #define ptp_canon_eos_setremotemode(params,p1) ptp_generic_no_data(params,PTP_OC_CANON_EOS_SetRemoteMode,1,p1)
2616 #define ptp_canon_eos_seteventmode(params,p1) ptp_generic_no_data(params,PTP_OC_CANON_EOS_SetEventMode,1,p1)
2617 
2628 #define ptp_canon_eos_transfercomplete(params,oid) ptp_generic_no_data(params,PTP_OC_CANON_EOS_TransferComplete,1,oid)
2629 /* inHDD = %d, inLength =%d, inReset = %d */
2630 #define ptp_canon_eos_pchddcapacity(params,p1,p2,p3) ptp_generic_no_data(params,PTP_OC_CANON_EOS_PCHDDCapacity,3,p1,p2,p3)
2631 uint16_t ptp_canon_eos_bulbstart (PTPParams* params);
2632 uint16_t ptp_canon_eos_bulbend (PTPParams* params);
2633 uint16_t ptp_canon_eos_getdevicepropdesc (PTPParams* params, uint16_t propcode,
2634  PTPDevicePropDesc *devicepropertydesc);
2635 uint16_t ptp_canon_eos_setdevicepropvalue (PTPParams* params, uint16_t propcode,
2636  PTPPropertyValue* value, uint16_t datatype);
2637 uint16_t ptp_nikon_get_vendorpropcodes (PTPParams* params, uint16_t **props, unsigned int *size);
2638 uint16_t ptp_nikon_curve_download (PTPParams* params,
2639  unsigned char **data, unsigned int *size);
2640 uint16_t ptp_nikon_getptpipinfo (PTPParams* params, unsigned char **data, unsigned int *size);
2641 uint16_t ptp_nikon_getwifiprofilelist (PTPParams* params);
2642 uint16_t ptp_nikon_writewifiprofile (PTPParams* params, PTPNIKONWifiProfile* profile);
2654 #define ptp_nikon_deletewifiprofile(params,profilenr) ptp_generic_no_data(params,PTP_OC_NIKON_DeleteProfile,1,profilenr)
2655 
2666 #define ptp_nikon_setcontrolmode(params,mode) ptp_generic_no_data(params,PTP_OC_NIKON_SetControlMode,1,mode)
2667 
2677 #define ptp_nikon_afdrive(params) ptp_generic_no_data(params,PTP_OC_NIKON_AfDrive,0)
2678 
2688 #define ptp_canon_eos_afdrive(params) ptp_generic_no_data(params,PTP_OC_CANON_EOS_DoAf,0)
2689 
2700 #define ptp_canon_eos_zoom(params,x) ptp_generic_no_data(params,PTP_OC_CANON_EOS_Zoom,1,x)
2701 #define ptp_canon_eos_zoomposition(params,x,y) ptp_generic_no_data(params,PTP_OC_CANON_EOS_ZoomPosition,2,x,y)
2702 
2703 #define ptp_canon_eos_remotereleaseon(params,x) ptp_generic_no_data(params,PTP_OC_CANON_EOS_RemoteReleaseOn,1,x)
2704 #define ptp_canon_eos_remotereleaseoff(params,x) ptp_generic_no_data(params,PTP_OC_CANON_EOS_RemoteReleaseOff,1,x)
2705 
2717 #define ptp_nikon_mfdrive(params,flag,amount) ptp_generic_no_data(params,PTP_OC_NIKON_MfDrive,2,flag,amount)
2718 
2730 #define ptp_canon_eos_drivelens(params,amount) ptp_generic_no_data(params,PTP_OC_CANON_EOS_DriveLens,1,amount)
2731 
2742 #define ptp_nikon_capture(params,x) ptp_generic_no_data(params,PTP_OC_NIKON_Capture,1,x)
2743 
2753 #define ptp_nikon_capture_sdram(params) ptp_generic_no_data(params,PTP_OC_NIKON_AfCaptureSDRAM,0)
2754 
2765 #define ptp_nikon_delete_sdram_image(params,oid) ptp_generic_no_data(params,PTP_OC_NIKON_DelImageSDRAM,1,oid)
2766 
2776 #define ptp_nikon_start_liveview(params) ptp_generic_no_data(params,PTP_OC_NIKON_StartLiveView,0)
2777 uint16_t ptp_nikon_get_liveview_image (PTPParams* params, unsigned char**,unsigned int*);
2778 uint16_t ptp_nikon_get_preview_image (PTPParams* params, unsigned char**, unsigned int*, uint32_t*);
2789 #define ptp_nikon_end_liveview(params) ptp_generic_no_data(params,PTP_OC_NIKON_EndLiveView,0)
2790 uint16_t ptp_nikon_check_event (PTPParams* params, PTPContainer **evt, int *evtcnt);
2791 uint16_t ptp_nikon_getfileinfoinblock (PTPParams* params, uint32_t p1, uint32_t p2, uint32_t p3,
2792  unsigned char **data, unsigned int *size);
2804 #define ptp_nikon_device_ready(params) ptp_generic_no_data (params, PTP_OC_NIKON_DeviceReady, 0)
2805 uint16_t ptp_mtp_getobjectpropssupported (PTPParams* params, uint16_t ofc, uint32_t *propnum, uint16_t **props);
2806 
2807 /* Non PTP protocol functions */
2808 static inline int
2809 ptp_operation_issupported(PTPParams* params, uint16_t operation)
2810 {
2811  int i=0;
2812 
2813  for (;i<params->deviceinfo.OperationsSupported_len;i++) {
2814  if (params->deviceinfo.OperationsSupported[i]==operation)
2815  return 1;
2816  }
2817  return 0;
2818 }
2819 
2820 int ptp_event_issupported (PTPParams* params, uint16_t event);
2821 int ptp_property_issupported (PTPParams* params, uint16_t property);
2822 
2823 void ptp_free_devicepropdesc (PTPDevicePropDesc* dpd);
2824 void ptp_free_devicepropvalue (uint16_t dt, PTPPropertyValue* dpd);
2825 void ptp_free_objectpropdesc (PTPObjectPropDesc* dpd);
2826 void ptp_free_params (PTPParams *params);
2827 void ptp_free_objectinfo (PTPObjectInfo *oi);
2828 void ptp_free_object (PTPObject *oi);
2829 
2830 const char *ptp_strerror(uint16_t error);
2831 void ptp_perror (PTPParams* params, uint16_t error);
2832 void ptp_debug (PTPParams *params, const char *format, ...);
2833 void ptp_error (PTPParams *params, const char *format, ...);
2834 
2835 
2836 const char*
2837 ptp_get_property_description(PTPParams* params, uint16_t dpc);
2838 
2839 int
2840 ptp_render_property_value(PTPParams* params, uint16_t dpc,
2841  PTPDevicePropDesc *dpd, int length, char *out);
2842 int ptp_render_ofc(PTPParams* params, uint16_t ofc, int spaceleft, char *txt);
2843 int ptp_render_opcode(PTPParams* params, uint16_t opcode, int spaceleft, char *txt);
2844 int ptp_render_mtp_propname(uint16_t propid, int spaceleft, char *txt);
2845 MTPProperties *ptp_get_new_object_prop_entry(MTPProperties **props, int *nrofprops);
2846 void ptp_destroy_object_prop(MTPProperties *prop);
2847 void ptp_destroy_object_prop_list(MTPProperties *props, int nrofprops);
2848 MTPProperties *ptp_find_object_prop_in_cache(PTPParams *params, uint32_t const handle, uint32_t const attribute_id);
2849 void ptp_remove_object_from_cache(PTPParams *params, uint32_t handle);
2850 uint16_t ptp_add_object_to_cache(PTPParams *params, uint32_t handle);
2851 uint16_t ptp_object_want (PTPParams *, uint32_t handle, int want, PTPObject**retob);
2852 void ptp_objects_sort (PTPParams *);
2853 uint16_t ptp_object_find (PTPParams *params, uint32_t handle, PTPObject **retob);
2854 uint16_t ptp_object_find_or_insert (PTPParams *params, uint32_t handle, PTPObject **retob);
2855 /* ptpip.c */
2856 void ptp_nikon_getptpipguid (unsigned char* guid);
2857 
2858 enum PTP_CHDK_Command {
2859  PTP_CHDK_Shutdown = 0, /* param2 is 0 (hard), 1 (soft), 2 (reboot) or 3 (reboot fw update)
2860  if param2 == 3, then filename of fw update is send as data (empty for default) */
2861  PTP_CHDK_GetMemory, /* param2 is base address (or 0 for live image buffer, 1 for bitmap buffer)
2862  param3 is size (in bytes)
2863  return data is memory block */
2864  PTP_CHDK_SetMemoryLong, /* param2 is address
2865  param3 is value */
2866  PTP_CHDK_CallFunction, /* data is array of function pointer and (long) arguments (max: 10 args)
2867  return param1 is return value */
2868  PTP_CHDK_GetPropCase, /* param2 is base id
2869  param3 is number of properties
2870  return data is array of longs */
2871  PTP_CHDK_GetParamData, /* param2 is base id
2872  param3 is number of parameters
2873  return data is sequence of strings prefixed by their length (as long) */
2874  PTP_CHDK_TempData, /* data is data to be stored for later */
2875  PTP_CHDK_UploadFile, /* data is 4-byte length of filename, followed by filename and contents */
2876  PTP_CHDK_DownloadFile, /* preceded by PTP_CHDK_TempData with filename
2877  return data are file contents */
2878  PTP_CHDK_SwitchMode, /* param2 is 0 (playback) or 1 (record) */
2879  PTP_CHDK_ExecuteLUA, /* data is script to be executed */
2880  PTP_CHDK_GetVideoSettings,
2881  PTP_CHDK_GetScriptOutput, /* return script output in ASCIIZ */
2882  PTP_CHDK_OpenDir, /* open directory listing, data is directory name */
2883  PTP_CHDK_ReadDir, /* return data is next file info */
2884  PTP_CHDK_CloseDir, /* close directory listing */
2885  PTP_CHDK_GetShootingModesList, /* not used */
2886  PTP_CHDK_StartDownloadFile,
2887  PTP_CHDK_ResumeDownloadFile,
2888  PTP_CHDK_EndDownloadFile,
2889 };
2890 
2891 #define PTP_OC_CHDK 0x9999
2893  long live_image_buffer_width;
2894  long live_image_width;
2895  long live_image_height;
2896  long bitmap_buffer_width;
2897  long bitmap_width;
2898  long bitmap_height;
2899  unsigned palette[16];
2901 
2902 #define ptp_chdk_shutdown_hard(params) ptp_generic_no_data(params,PTP_OC_CHDK,2,PTP_CHDK_Shutdown,0)
2903 #define ptp_chdk_shutdown_soft(params) ptp_generic_no_data(params,PTP_OC_CHDK,2,PTP_CHDK_Shutdown,1)
2904 #define ptp_chdk_reboot(params) ptp_generic_no_data(params,PTP_OC_CHDK,2,PTP_CHDK_Shutdown,2)
2905 #define ptp_chdk_reboot_fw_update(params) ptp_generic_no_data(params,PTP_OC_CHDK,2,PTP_CHDK_Shutdown,3)
2906 uint16_t ptp_chdk_get_memory(PTPParams* params, int start, int num, unsigned char**);
2907 #define ptp_chdk_set_memory_long(params,addr,val) ptp_generic_no_data(params,PTP_OC_CHDK,3,PTP_CHDK_SetMemoryLong,addr,val)
2908 uint16_t ptp_chdk_call(PTPParams* params, int *args, int size, int *ret);
2909 uint16_t ptp_chdk_get_propcase(PTPParams* params, int start, int num, int* ints);
2910 uint16_t ptp_chdk_get_paramdata(PTPParams* params, int start, int num, unsigned char** x);
2911 #define ptp_chdk_switch_mode(params,mode) ptp_generic_no_data(params,PTP_OC_CHDK,2,PTP_CHDK_SwitchMode,mode)
2912 uint16_t ptp_chdk_exec_lua(PTPParams *params, char *script, uint32_t* ret);
2913 uint16_t ptp_chdk_get_script_output(PTPParams* params, char **output );
2914 uint16_t ptp_chdk_get_video_settings(PTPParams* params, ptp_chdk_videosettings* vsettings);
2915 
2916 #ifdef __cplusplus
2917 }
2918 #endif /* __cplusplus */
2919 
2920 #endif /* __PTP_H__ */