00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #ifndef __PTP_H__
00024 #define __PTP_H__
00025
00026 #include <stdarg.h>
00027 #include <time.h>
00028 #ifdef HAVE_ICONV
00029 #include <iconv.h>
00030 #endif
00031 #include "gphoto2-endian.h"
00032 #include "device-flags.h"
00033
00034 #ifdef __cplusplus
00035 extern "C" {
00036 #endif
00037
00038
00039
00040 #define PTP_DL_BE 0xF0
00041 #define PTP_DL_LE 0x0F
00042
00043
00044 #ifndef USB_CLASS_PTP
00045 #define USB_CLASS_PTP 6
00046 #endif
00047
00048
00049
00050 struct _PTPContainer {
00051 uint16_t Code;
00052 uint32_t SessionID;
00053 uint32_t Transaction_ID;
00054
00055 uint32_t Param1;
00056 uint32_t Param2;
00057 uint32_t Param3;
00058
00059 uint32_t Param4;
00060 uint32_t Param5;
00061
00062 uint8_t Nparam;
00063 };
00064 typedef struct _PTPContainer PTPContainer;
00065
00066
00067
00068
00069
00070
00071
00072
00073
00074
00075
00076
00077
00078 #define PTP_USB_BULK_HS_MAX_PACKET_LEN_WRITE 512
00079 #define PTP_USB_BULK_HS_MAX_PACKET_LEN_READ 512
00080 #define PTP_USB_BULK_HDR_LEN (2*sizeof(uint32_t)+2*sizeof(uint16_t))
00081 #define PTP_USB_BULK_PAYLOAD_LEN_WRITE (PTP_USB_BULK_HS_MAX_PACKET_LEN_WRITE-PTP_USB_BULK_HDR_LEN)
00082 #define PTP_USB_BULK_PAYLOAD_LEN_READ (PTP_USB_BULK_HS_MAX_PACKET_LEN_READ-PTP_USB_BULK_HDR_LEN)
00083 #define PTP_USB_BULK_REQ_LEN (PTP_USB_BULK_HDR_LEN+5*sizeof(uint32_t))
00084
00085 struct _PTPUSBBulkContainer {
00086 uint32_t length;
00087 uint16_t type;
00088 uint16_t code;
00089 uint32_t trans_id;
00090 union {
00091 struct {
00092 uint32_t param1;
00093 uint32_t param2;
00094 uint32_t param3;
00095 uint32_t param4;
00096 uint32_t param5;
00097 } params;
00098
00099
00100 unsigned char data[PTP_USB_BULK_PAYLOAD_LEN_READ];
00101 } payload;
00102 };
00103 typedef struct _PTPUSBBulkContainer PTPUSBBulkContainer;
00104
00105
00106 struct _PTPUSBEventContainer {
00107 uint32_t length;
00108 uint16_t type;
00109 uint16_t code;
00110 uint32_t trans_id;
00111 uint32_t param1;
00112 uint32_t param2;
00113 uint32_t param3;
00114 };
00115 typedef struct _PTPUSBEventContainer PTPUSBEventContainer;
00116
00117 struct _PTPCanon_directtransfer_entry {
00118 uint32_t oid;
00119 char *str;
00120 };
00121 typedef struct _PTPCanon_directtransfer_entry PTPCanon_directtransfer_entry;
00122
00123
00124
00125 #define PTP_USB_CONTAINER_UNDEFINED 0x0000
00126 #define PTP_USB_CONTAINER_COMMAND 0x0001
00127 #define PTP_USB_CONTAINER_DATA 0x0002
00128 #define PTP_USB_CONTAINER_RESPONSE 0x0003
00129 #define PTP_USB_CONTAINER_EVENT 0x0004
00130
00131
00132 #define PTPIP_INIT_COMMAND_REQUEST 1
00133 #define PTPIP_INIT_COMMAND_ACK 2
00134 #define PTPIP_INIT_EVENT_REQUEST 3
00135 #define PTPIP_INIT_EVENT_ACK 4
00136 #define PTPIP_INIT_FAIL 5
00137 #define PTPIP_CMD_REQUEST 6
00138 #define PTPIP_CMD_RESPONSE 7
00139 #define PTPIP_EVENT 8
00140 #define PTPIP_START_DATA_PACKET 9
00141 #define PTPIP_DATA_PACKET 10
00142 #define PTPIP_CANCEL_TRANSACTION 11
00143 #define PTPIP_END_DATA_PACKET 12
00144 #define PTPIP_PING 13
00145 #define PTPIP_PONG 14
00146
00147 struct _PTPIPHeader {
00148 uint32_t length;
00149 uint32_t type;
00150 };
00151 typedef struct _PTPIPHeader PTPIPHeader;
00152
00153
00154 #define PTP_VENDOR_EASTMAN_KODAK 0x00000001
00155 #define PTP_VENDOR_SEIKO_EPSON 0x00000002
00156 #define PTP_VENDOR_AGILENT 0x00000003
00157 #define PTP_VENDOR_POLAROID 0x00000004
00158 #define PTP_VENDOR_AGFA_GEVAERT 0x00000005
00159 #define PTP_VENDOR_MICROSOFT 0x00000006
00160 #define PTP_VENDOR_EQUINOX 0x00000007
00161 #define PTP_VENDOR_VIEWQUEST 0x00000008
00162 #define PTP_VENDOR_STMICROELECTRONICS 0x00000009
00163 #define PTP_VENDOR_NIKON 0x0000000A
00164 #define PTP_VENDOR_CANON 0x0000000B
00165 #define PTP_VENDOR_FOTONATION 0x0000000C
00166 #define PTP_VENDOR_PENTAX 0x0000000D
00167 #define PTP_VENDOR_FUJI 0x0000000E
00168
00169 #define PTP_VENDOR_MTP 0xffffffff
00170
00171
00172
00173
00174 #define PTP_OC_Undefined 0x1000
00175 #define PTP_OC_GetDeviceInfo 0x1001
00176 #define PTP_OC_OpenSession 0x1002
00177 #define PTP_OC_CloseSession 0x1003
00178 #define PTP_OC_GetStorageIDs 0x1004
00179 #define PTP_OC_GetStorageInfo 0x1005
00180 #define PTP_OC_GetNumObjects 0x1006
00181 #define PTP_OC_GetObjectHandles 0x1007
00182 #define PTP_OC_GetObjectInfo 0x1008
00183 #define PTP_OC_GetObject 0x1009
00184 #define PTP_OC_GetThumb 0x100A
00185 #define PTP_OC_DeleteObject 0x100B
00186 #define PTP_OC_SendObjectInfo 0x100C
00187 #define PTP_OC_SendObject 0x100D
00188 #define PTP_OC_InitiateCapture 0x100E
00189 #define PTP_OC_FormatStore 0x100F
00190 #define PTP_OC_ResetDevice 0x1010
00191 #define PTP_OC_SelfTest 0x1011
00192 #define PTP_OC_SetObjectProtection 0x1012
00193 #define PTP_OC_PowerDown 0x1013
00194 #define PTP_OC_GetDevicePropDesc 0x1014
00195 #define PTP_OC_GetDevicePropValue 0x1015
00196 #define PTP_OC_SetDevicePropValue 0x1016
00197 #define PTP_OC_ResetDevicePropValue 0x1017
00198 #define PTP_OC_TerminateOpenCapture 0x1018
00199 #define PTP_OC_MoveObject 0x1019
00200 #define PTP_OC_CopyObject 0x101A
00201 #define PTP_OC_GetPartialObject 0x101B
00202 #define PTP_OC_InitiateOpenCapture 0x101C
00203
00204 #define PTP_OC_StartEnumHandles 0x101D
00205 #define PTP_OC_EnumHandles 0x101E
00206 #define PTP_OC_StopEnumHandles 0x101F
00207 #define PTP_OC_GetVendorExtensionMaps 0x1020
00208 #define PTP_OC_GetVendorDeviceInfo 0x1021
00209 #define PTP_OC_GetResizedImageObject 0x1022
00210 #define PTP_OC_GetFilesystemManifest 0x1023
00211 #define PTP_OC_GetStreamInfo 0x1024
00212 #define PTP_OC_GetStream 0x1025
00213
00214
00215 #define PTP_OC_EK_GetSerial 0x9003
00216 #define PTP_OC_EK_SetSerial 0x9004
00217 #define PTP_OC_EK_SendFileObjectInfo 0x9005
00218 #define PTP_OC_EK_SendFileObject 0x9006
00219 #define PTP_OC_EK_SetText 0x9008
00220
00221
00222 #define PTP_OC_CANON_GetPartialObjectInfo 0x9001
00223
00224 #define PTP_OC_CANON_SetObjectArchive 0x9002
00225 #define PTP_OC_CANON_KeepDeviceOn 0x9003
00226 #define PTP_OC_CANON_LockDeviceUI 0x9004
00227 #define PTP_OC_CANON_UnlockDeviceUI 0x9005
00228 #define PTP_OC_CANON_GetObjectHandleByName 0x9006
00229
00230 #define PTP_OC_CANON_InitiateReleaseControl 0x9008
00231 #define PTP_OC_CANON_TerminateReleaseControl 0x9009
00232 #define PTP_OC_CANON_TerminatePlaybackMode 0x900A
00233 #define PTP_OC_CANON_ViewfinderOn 0x900B
00234 #define PTP_OC_CANON_ViewfinderOff 0x900C
00235 #define PTP_OC_CANON_DoAeAfAwb 0x900D
00236
00237
00238 #define PTP_OC_CANON_GetCustomizeSpec 0x900E
00239 #define PTP_OC_CANON_GetCustomizeItemInfo 0x900F
00240 #define PTP_OC_CANON_GetCustomizeData 0x9010
00241 #define PTP_OC_CANON_SetCustomizeData 0x9011
00242 #define PTP_OC_CANON_GetCaptureStatus 0x9012
00243 #define PTP_OC_CANON_CheckEvent 0x9013
00244 #define PTP_OC_CANON_FocusLock 0x9014
00245 #define PTP_OC_CANON_FocusUnlock 0x9015
00246 #define PTP_OC_CANON_GetLocalReleaseParam 0x9016
00247 #define PTP_OC_CANON_SetLocalReleaseParam 0x9017
00248 #define PTP_OC_CANON_AskAboutPcEvf 0x9018
00249 #define PTP_OC_CANON_SendPartialObject 0x9019
00250 #define PTP_OC_CANON_InitiateCaptureInMemory 0x901A
00251 #define PTP_OC_CANON_GetPartialObjectEx 0x901B
00252 #define PTP_OC_CANON_SetObjectTime 0x901C
00253 #define PTP_OC_CANON_GetViewfinderImage 0x901D
00254 #define PTP_OC_CANON_GetObjectAttributes 0x901E
00255 #define PTP_OC_CANON_ChangeUSBProtocol 0x901F
00256 #define PTP_OC_CANON_GetChanges 0x9020
00257 #define PTP_OC_CANON_GetObjectInfoEx 0x9021
00258 #define PTP_OC_CANON_InitiateDirectTransfer 0x9022
00259 #define PTP_OC_CANON_TerminateDirectTransfer 0x9023
00260 #define PTP_OC_CANON_SendObjectInfoByPath 0x9024
00261 #define PTP_OC_CANON_SendObjectByPath 0x9025
00262 #define PTP_OC_CANON_InitiateDirectTansferEx 0x9026
00263 #define PTP_OC_CANON_GetAncillaryObjectHandles 0x9027
00264 #define PTP_OC_CANON_GetTreeInfo 0x9028
00265 #define PTP_OC_CANON_GetTreeSize 0x9029
00266 #define PTP_OC_CANON_NotifyProgress 0x902A
00267 #define PTP_OC_CANON_NotifyCancelAccepted 0x902B
00268
00269 #define PTP_OC_CANON_902C 0x902C
00270 #define PTP_OC_CANON_GetDirectory 0x902D
00271
00272 #define PTP_OC_CANON_SetPairingInfo 0x9030
00273 #define PTP_OC_CANON_GetPairingInfo 0x9031
00274 #define PTP_OC_CANON_DeletePairingInfo 0x9032
00275 #define PTP_OC_CANON_GetMACAddress 0x9033
00276
00277 #define PTP_OC_CANON_SetDisplayMonitor 0x9034
00278 #define PTP_OC_CANON_PairingComplete 0x9035
00279 #define PTP_OC_CANON_GetWirelessMAXChannel 0x9036
00280
00281
00282 #define PTP_OC_CANON_EOS_GetStorageIDs 0x9101
00283
00284
00285
00286
00287
00288
00289
00290
00291 #define PTP_OC_CANON_EOS_GetStorageInfo 0x9102
00292 #define PTP_OC_CANON_EOS_GetObjectInfo 0x9103
00293 #define PTP_OC_CANON_EOS_GetObject 0x9104
00294 #define PTP_OC_CANON_EOS_DeleteObject 0x9105
00295 #define PTP_OC_CANON_EOS_FormatStore 0x9106
00296 #define PTP_OC_CANON_EOS_GetPartialObject 0x9107
00297 #define PTP_OC_CANON_EOS_GetDeviceInfoEx 0x9108
00298
00299
00300
00301
00302
00303
00304
00305
00306
00307
00308
00309
00310
00311
00312
00313
00314
00315
00316
00317
00318
00319
00320
00321 #define PTP_OC_CANON_EOS_GetObjectInfoEx 0x9109
00322 #define PTP_OC_CANON_EOS_GetThumbEx 0x910A
00323 #define PTP_OC_CANON_EOS_SendPartialObject 0x910B
00324 #define PTP_OC_CANON_EOS_SetObjectAttributes 0x910C
00325 #define PTP_OC_CANON_EOS_GetObjectTime 0x910D
00326 #define PTP_OC_CANON_EOS_SetObjectTime 0x910E
00327
00328
00329 #define PTP_OC_CANON_EOS_RemoteRelease 0x910F
00330
00331
00332
00333
00334
00335
00336 #define PTP_OC_CANON_EOS_SetDevicePropValueEx 0x9110
00337 #define PTP_OC_CANON_EOS_GetRemoteMode 0x9113
00338
00339 #define PTP_OC_CANON_EOS_SetRemoteMode 0x9114
00340
00341 #define PTP_OC_CANON_EOS_SetEventMode 0x9115
00342
00343 #define PTP_OC_CANON_EOS_GetEvent 0x9116
00344 #define PTP_OC_CANON_EOS_TransferComplete 0x9117
00345 #define PTP_OC_CANON_EOS_CancelTransfer 0x9118
00346 #define PTP_OC_CANON_EOS_ResetTransfer 0x9119
00347
00348
00349
00350 #define PTP_OC_CANON_EOS_PCHDDCapacity 0x911A
00351
00352
00353 #define PTP_OC_CANON_EOS_SetUILock 0x911B
00354
00355 #define PTP_OC_CANON_EOS_ResetUILock 0x911C
00356 #define PTP_OC_CANON_EOS_KeepDeviceOn 0x911D
00357 #define PTP_OC_CANON_EOS_SetNullPacketMode 0x911E
00358 #define PTP_OC_CANON_EOS_UpdateFirmware 0x911F
00359 #define PTP_OC_CANON_EOS_TransferCompleteDT 0x9120
00360 #define PTP_OC_CANON_EOS_CancelTransferDT 0x9121
00361 #define PTP_OC_CANON_EOS_SetWftProfile 0x9122
00362 #define PTP_OC_CANON_EOS_GetWftProfile 0x9122
00363 #define PTP_OC_CANON_EOS_SetProfileToWft 0x9124
00364 #define PTP_OC_CANON_EOS_BulbStart 0x9125
00365 #define PTP_OC_CANON_EOS_BulbEnd 0x9126
00366 #define PTP_OC_CANON_EOS_RequestDevicePropValue 0x9127
00367
00368
00369 #define PTP_OC_CANON_EOS_RemoteReleaseOn 0x9128
00370
00371 #define PTP_OC_CANON_EOS_RemoteReleaseOff 0x9129
00372
00373 #define PTP_OC_CANON_EOS_InitiateViewfinder 0x9151
00374 #define PTP_OC_CANON_EOS_TerminateViewfinder 0x9152
00375 #define PTP_OC_CANON_EOS_GetViewFinderData 0x9153
00376 #define PTP_OC_CANON_EOS_DoAf 0x9154
00377 #define PTP_OC_CANON_EOS_DriveLens 0x9155
00378 #define PTP_OC_CANON_EOS_DepthOfFieldPreview 0x9156
00379 #define PTP_OC_CANON_EOS_ClickWB 0x9157
00380 #define PTP_OC_CANON_EOS_Zoom 0x9158
00381 #define PTP_OC_CANON_EOS_ZoomPosition 0x9159
00382 #define PTP_OC_CANON_EOS_SetLiveAfFrame 0x915a
00383 #define PTP_OC_CANON_EOS_AfCancel 0x9160
00384 #define PTP_OC_CANON_EOS_FAPIMessageTX 0x91FE
00385 #define PTP_OC_CANON_EOS_FAPIMessageRX 0x91FF
00386
00387
00388 #define PTP_OC_NIKON_GetProfileAllData 0x9006
00389 #define PTP_OC_NIKON_SendProfileData 0x9007
00390 #define PTP_OC_NIKON_DeleteProfile 0x9008
00391 #define PTP_OC_NIKON_SetProfileData 0x9009
00392 #define PTP_OC_NIKON_AdvancedTransfer 0x9010
00393 #define PTP_OC_NIKON_GetFileInfoInBlock 0x9011
00394 #define PTP_OC_NIKON_Capture 0x90C0
00395 #define PTP_OC_NIKON_AfDrive 0x90C1
00396 #define PTP_OC_NIKON_SetControlMode 0x90C2
00397 #define PTP_OC_NIKON_DelImageSDRAM 0x90C3
00398 #define PTP_OC_NIKON_GetLargeThumb 0x90C4
00399 #define PTP_OC_NIKON_CurveDownload 0x90C5
00400 #define PTP_OC_NIKON_CurveUpload 0x90C6
00401 #define PTP_OC_NIKON_CheckEvent 0x90C7
00402 #define PTP_OC_NIKON_DeviceReady 0x90C8
00403 #define PTP_OC_NIKON_SetPreWBData 0x90C9
00404 #define PTP_OC_NIKON_GetVendorPropCodes 0x90CA
00405 #define PTP_OC_NIKON_AfCaptureSDRAM 0x90CB
00406 #define PTP_OC_NIKON_GetPictCtrlData 0x90CC
00407 #define PTP_OC_NIKON_SetPictCtrlData 0x90CD
00408 #define PTP_OC_NIKON_DelCstPicCtrl 0x90CE
00409 #define PTP_OC_NIKON_GetPicCtrlCapability 0x90CF
00410
00411
00412 #define PTP_OC_NIKON_GetPreviewImg 0x9200
00413 #define PTP_OC_NIKON_StartLiveView 0x9201
00414 #define PTP_OC_NIKON_EndLiveView 0x9202
00415 #define PTP_OC_NIKON_GetLiveViewImg 0x9203
00416 #define PTP_OC_NIKON_MfDrive 0x9204
00417 #define PTP_OC_NIKON_ChangeAfArea 0x9205
00418 #define PTP_OC_NIKON_AfDriveCancel 0x9206
00419
00420 #define PTP_OC_NIKON_GetDevicePTPIPInfo 0x90E0
00421
00422
00423 #define PTP_OC_CASIO_STILL_START 0x9001
00424 #define PTP_OC_CASIO_STILL_STOP 0x9002
00425
00426 #define PTP_OC_CASIO_FOCUS 0x9007
00427 #define PTP_OC_CASIO_CF_PRESS 0x9009
00428 #define PTP_OC_CASIO_CF_RELEASE 0x900A
00429 #define PTP_OC_CASIO_GET_OBJECT_INFO 0x900C
00430
00431 #define PTP_OC_CASIO_SHUTTER 0x9024
00432 #define PTP_OC_CASIO_GET_STILL_HANDLES 0x9027
00433 #define PTP_OC_CASIO_STILL_RESET 0x9028
00434 #define PTP_OC_CASIO_HALF_PRESS 0x9029
00435 #define PTP_OC_CASIO_HALF_RELEASE 0x902A
00436 #define PTP_OC_CASIO_CS_PRESS 0x902B
00437 #define PTP_OC_CASIO_CS_RELEASE 0x902C
00438
00439 #define PTP_OC_CASIO_ZOOM 0x902D
00440 #define PTP_OC_CASIO_CZ_PRESS 0x902E
00441 #define PTP_OC_CASIO_CZ_RELEASE 0x902F
00442
00443 #define PTP_OC_CASIO_MOVIE_START 0x9041
00444 #define PTP_OC_CASIO_MOVIE_STOP 0x9042
00445 #define PTP_OC_CASIO_MOVIE_PRESS 0x9043
00446 #define PTP_OC_CASIO_MOVIE_RELEASE 0x9044
00447 #define PTP_OC_CASIO_GET_MOVIE_HANDLES 0x9045
00448 #define PTP_OC_CASIO_MOVIE_RESET 0x9046
00449
00450 #define PTP_OC_CASIO_GET_OBJECT 0x9025
00451 #define PTP_OC_CASIO_GET_THUMBNAIL 0x9026
00452
00453
00454
00455 #define PTP_OC_MTP_GetObjectPropsSupported 0x9801
00456 #define PTP_OC_MTP_GetObjectPropDesc 0x9802
00457 #define PTP_OC_MTP_GetObjectPropValue 0x9803
00458 #define PTP_OC_MTP_SetObjectPropValue 0x9804
00459 #define PTP_OC_MTP_GetObjPropList 0x9805
00460 #define PTP_OC_MTP_SetObjPropList 0x9806
00461 #define PTP_OC_MTP_GetInterdependendPropdesc 0x9807
00462 #define PTP_OC_MTP_SendObjectPropList 0x9808
00463 #define PTP_OC_MTP_GetObjectReferences 0x9810
00464 #define PTP_OC_MTP_SetObjectReferences 0x9811
00465 #define PTP_OC_MTP_UpdateDeviceFirmware 0x9812
00466 #define PTP_OC_MTP_Skip 0x9820
00467
00468
00469
00470
00471
00472 #define PTP_OC_MTP_WMDRMPD_GetSecureTimeChallenge 0x9101
00473 #define PTP_OC_MTP_WMDRMPD_GetSecureTimeResponse 0x9102
00474 #define PTP_OC_MTP_WMDRMPD_SetLicenseResponse 0x9103
00475 #define PTP_OC_MTP_WMDRMPD_GetSyncList 0x9104
00476 #define PTP_OC_MTP_WMDRMPD_SendMeterChallengeQuery 0x9105
00477 #define PTP_OC_MTP_WMDRMPD_GetMeterChallenge 0x9106
00478 #define PTP_OC_MTP_WMDRMPD_SetMeterResponse 0x9107
00479 #define PTP_OC_MTP_WMDRMPD_CleanDataStore 0x9108
00480 #define PTP_OC_MTP_WMDRMPD_GetLicenseState 0x9109
00481 #define PTP_OC_MTP_WMDRMPD_SendWMDRMPDCommand 0x910A
00482 #define PTP_OC_MTP_WMDRMPD_SendWMDRMPDRequest 0x910B
00483
00484
00485
00486
00487
00488
00489
00490 #define PTP_OC_MTP_WMDRMPD_SendWMDRMPDAppRequest 0x9212
00491 #define PTP_OC_MTP_WMDRMPD_GetWMDRMPDAppResponse 0x9213
00492 #define PTP_OC_MTP_WMDRMPD_EnableTrustedFilesOperations 0x9214
00493 #define PTP_OC_MTP_WMDRMPD_DisableTrustedFilesOperations 0x9215
00494 #define PTP_OC_MTP_WMDRMPD_EndTrustedAppSession 0x9216
00495
00496
00497
00498
00499
00500
00501 #define PTP_OC_MTP_AAVT_OpenMediaSession 0x9170
00502 #define PTP_OC_MTP_AAVT_CloseMediaSession 0x9171
00503 #define PTP_OC_MTP_AAVT_GetNextDataBlock 0x9172
00504 #define PTP_OC_MTP_AAVT_SetCurrentTimePosition 0x9173
00505
00506
00507
00508
00509
00510 #define PTP_OC_MTP_WMDRMND_SendRegistrationRequest 0x9180
00511 #define PTP_OC_MTP_WMDRMND_GetRegistrationResponse 0x9181
00512 #define PTP_OC_MTP_WMDRMND_GetProximityChallenge 0x9182
00513 #define PTP_OC_MTP_WMDRMND_SendProximityResponse 0x9183
00514 #define PTP_OC_MTP_WMDRMND_SendWMDRMNDLicenseRequest 0x9184
00515 #define PTP_OC_MTP_WMDRMND_GetWMDRMNDLicenseResponse 0x9185
00516
00517
00518
00519
00520
00521 #define PTP_OC_MTP_WMPPD_ReportAddedDeletedItems 0x9201
00522 #define PTP_OC_MTP_WMPPD_ReportAcquiredItems 0x9202
00523 #define PTP_OC_MTP_WMPPD_PlaylistObjectPref 0x9203
00524
00525
00526
00527
00528
00529 #define PTP_OC_MTP_ZUNE_GETUNDEFINED001 0x9204
00530
00531
00532 #define PTP_OC_MTP_WPDWCN_ProcessWFCObject 0x9122
00533
00534
00535
00536 #define PTP_OC_OLYMPUS_Capture 0x9101
00537 #define PTP_OC_OLYMPUS_SelfCleaning 0x9103
00538 #define PTP_OC_OLYMPUS_SetRGBGain 0x9106
00539 #define PTP_OC_OLYMPUS_SetPresetMode 0x9107
00540 #define PTP_OC_OLYMPUS_SetWBBiasAll 0x9108
00541 #define PTP_OC_OLYMPUS_GetCameraControlMode 0x910a
00542 #define PTP_OC_OLYMPUS_SetCameraControlMode 0x910b
00543 #define PTP_OC_OLYMPUS_SetWBRGBGain 0x910c
00544 #define PTP_OC_OLYMPUS_GetDeviceInfo 0x9301
00545 #define PTP_OC_OLYMPUS_Init1 0x9302
00546 #define PTP_OC_OLYMPUS_SetDateTime 0x9402
00547 #define PTP_OC_OLYMPUS_GetDateTime 0x9482
00548 #define PTP_OC_OLYMPUS_SetCameraID 0x9501
00549 #define PTP_OC_OLYMPUS_GetCameraID 0x9581
00550
00551
00552 #define PTP_OC_EXTENSION_MASK 0xF000
00553 #define PTP_OC_EXTENSION 0x9000
00554
00555
00556
00557
00558 #define PTP_RC_Undefined 0x2000
00559 #define PTP_RC_OK 0x2001
00560 #define PTP_RC_GeneralError 0x2002
00561 #define PTP_RC_SessionNotOpen 0x2003
00562 #define PTP_RC_InvalidTransactionID 0x2004
00563 #define PTP_RC_OperationNotSupported 0x2005
00564 #define PTP_RC_ParameterNotSupported 0x2006
00565 #define PTP_RC_IncompleteTransfer 0x2007
00566 #define PTP_RC_InvalidStorageId 0x2008
00567 #define PTP_RC_InvalidObjectHandle 0x2009
00568 #define PTP_RC_DevicePropNotSupported 0x200A
00569 #define PTP_RC_InvalidObjectFormatCode 0x200B
00570 #define PTP_RC_StoreFull 0x200C
00571 #define PTP_RC_ObjectWriteProtected 0x200D
00572 #define PTP_RC_StoreReadOnly 0x200E
00573 #define PTP_RC_AccessDenied 0x200F
00574 #define PTP_RC_NoThumbnailPresent 0x2010
00575 #define PTP_RC_SelfTestFailed 0x2011
00576 #define PTP_RC_PartialDeletion 0x2012
00577 #define PTP_RC_StoreNotAvailable 0x2013
00578 #define PTP_RC_SpecificationByFormatUnsupported 0x2014
00579 #define PTP_RC_NoValidObjectInfo 0x2015
00580 #define PTP_RC_InvalidCodeFormat 0x2016
00581 #define PTP_RC_UnknownVendorCode 0x2017
00582 #define PTP_RC_CaptureAlreadyTerminated 0x2018
00583 #define PTP_RC_DeviceBusy 0x2019
00584 #define PTP_RC_InvalidParentObject 0x201A
00585 #define PTP_RC_InvalidDevicePropFormat 0x201B
00586 #define PTP_RC_InvalidDevicePropValue 0x201C
00587 #define PTP_RC_InvalidParameter 0x201D
00588 #define PTP_RC_SessionAlreadyOpened 0x201E
00589 #define PTP_RC_TransactionCanceled 0x201F
00590 #define PTP_RC_SpecificationOfDestinationUnsupported 0x2020
00591
00592 #define PTP_RC_InvalidEnumHandle 0x2021
00593 #define PTP_RC_NoStreamEnabled 0x2022
00594 #define PTP_RC_InvalidDataSet 0x2023
00595
00596
00597 #define PTP_RC_EK_FilenameRequired 0xA001
00598 #define PTP_RC_EK_FilenameConflicts 0xA002
00599 #define PTP_RC_EK_FilenameInvalid 0xA003
00600
00601
00602 #define PTP_RC_NIKON_HardwareError 0xA001
00603 #define PTP_RC_NIKON_OutOfFocus 0xA002
00604 #define PTP_RC_NIKON_ChangeCameraModeFailed 0xA003
00605 #define PTP_RC_NIKON_InvalidStatus 0xA004
00606 #define PTP_RC_NIKON_SetPropertyNotSupported 0xA005
00607 #define PTP_RC_NIKON_WbResetError 0xA006
00608 #define PTP_RC_NIKON_DustReferenceError 0xA007
00609 #define PTP_RC_NIKON_ShutterSpeedBulb 0xA008
00610 #define PTP_RC_NIKON_MirrorUpSequence 0xA009
00611 #define PTP_RC_NIKON_CameraModeNotAdjustFNumber 0xA00A
00612 #define PTP_RC_NIKON_NotLiveView 0xA00B
00613 #define PTP_RC_NIKON_MfDriveStepEnd 0xA00C
00614 #define PTP_RC_NIKON_MfDriveStepInsufficiency 0xA00E
00615 #define PTP_RC_NIKON_AdvancedTransferCancel 0xA022
00616
00617
00618 #define PTP_RC_CANON_UNKNOWN_COMMAND 0xA001
00619 #define PTP_RC_CANON_OPERATION_REFUSED 0xA005
00620 #define PTP_RC_CANON_LENS_COVER 0xA006
00621 #define PTP_RC_CANON_BATTERY_LOW 0xA101
00622 #define PTP_RC_CANON_NOT_READY 0xA102
00623
00624 #define PTP_RC_CANON_A009 0xA009
00625
00626
00627 #define PTP_RC_MTP_Undefined 0xA800
00628 #define PTP_RC_MTP_Invalid_ObjectPropCode 0xA801
00629 #define PTP_RC_MTP_Invalid_ObjectProp_Format 0xA802
00630 #define PTP_RC_MTP_Invalid_ObjectProp_Value 0xA803
00631 #define PTP_RC_MTP_Invalid_ObjectReference 0xA804
00632 #define PTP_RC_MTP_Invalid_Dataset 0xA806
00633 #define PTP_RC_MTP_Specification_By_Group_Unsupported 0xA807
00634 #define PTP_RC_MTP_Specification_By_Depth_Unsupported 0xA808
00635 #define PTP_RC_MTP_Object_Too_Large 0xA809
00636 #define PTP_RC_MTP_ObjectProp_Not_Supported 0xA80A
00637
00638
00639
00640 #define PTP_RC_MTP_Invalid_Media_Session_ID 0xA170
00641 #define PTP_RC_MTP_Media_Session_Limit_Reached 0xA171
00642 #define PTP_RC_MTP_No_More_Data 0xA172
00643
00644
00645 #define PTP_RC_MTP_Invalid_WFC_Syntax 0xA121
00646 #define PTP_RC_MTP_WFC_Version_Not_Supported 0xA122
00647
00648
00649 #define PTP_ERROR_IO 0x02FF
00650 #define PTP_ERROR_DATA_EXPECTED 0x02FE
00651 #define PTP_ERROR_RESP_EXPECTED 0x02FD
00652 #define PTP_ERROR_BADPARAM 0x02FC
00653 #define PTP_ERROR_CANCEL 0x02FB
00654 #define PTP_ERROR_TIMEOUT 0x02FA
00655
00656
00657
00658 #define PTP_EC_Undefined 0x4000
00659 #define PTP_EC_CancelTransaction 0x4001
00660 #define PTP_EC_ObjectAdded 0x4002
00661 #define PTP_EC_ObjectRemoved 0x4003
00662 #define PTP_EC_StoreAdded 0x4004
00663 #define PTP_EC_StoreRemoved 0x4005
00664 #define PTP_EC_DevicePropChanged 0x4006
00665 #define PTP_EC_ObjectInfoChanged 0x4007
00666 #define PTP_EC_DeviceInfoChanged 0x4008
00667 #define PTP_EC_RequestObjectTransfer 0x4009
00668 #define PTP_EC_StoreFull 0x400A
00669 #define PTP_EC_DeviceReset 0x400B
00670 #define PTP_EC_StorageInfoChanged 0x400C
00671 #define PTP_EC_CaptureComplete 0x400D
00672 #define PTP_EC_UnreportedStatus 0x400E
00673
00674
00675 #define PTP_EC_CANON_ExtendedErrorcode 0xC005
00676 #define PTP_EC_CANON_ObjectInfoChanged 0xC008
00677 #define PTP_EC_CANON_RequestObjectTransfer 0xC009
00678 #define PTP_EC_CANON_CameraModeChanged 0xC00C
00679 #define PTP_EC_CANON_ShutterButtonPressed 0xC00E
00680
00681 #define PTP_EC_CANON_StartDirectTransfer 0xC011
00682 #define PTP_EC_CANON_StopDirectTransfer 0xC013
00683
00684
00685 #define PTP_EC_CANON_EOS_RequestGetEvent 0xc101
00686 #define PTP_EC_CANON_EOS_ObjectAddedEx 0xc181
00687 #define PTP_EC_CANON_EOS_ObjectRemoved 0xc182
00688 #define PTP_EC_CANON_EOS_RequestGetObjectInfoEx 0xc183
00689 #define PTP_EC_CANON_EOS_StorageStatusChanged 0xc184
00690 #define PTP_EC_CANON_EOS_StorageInfoChanged 0xc185
00691 #define PTP_EC_CANON_EOS_RequestObjectTransfer 0xc186
00692 #define PTP_EC_CANON_EOS_ObjectInfoChangedEx 0xc187
00693 #define PTP_EC_CANON_EOS_ObjectContentChanged 0xc188
00694 #define PTP_EC_CANON_EOS_PropValueChanged 0xc189
00695 #define PTP_EC_CANON_EOS_AvailListChanged 0xc18a
00696 #define PTP_EC_CANON_EOS_CameraStatusChanged 0xc18b
00697 #define PTP_EC_CANON_EOS_WillSoonShutdown 0xc18d
00698 #define PTP_EC_CANON_EOS_ShutdownTimerUpdated 0xc18e
00699 #define PTP_EC_CANON_EOS_RequestCancelTransfer 0xc18f
00700 #define PTP_EC_CANON_EOS_RequestObjectTransferDT 0xc190
00701 #define PTP_EC_CANON_EOS_RequestCancelTransferDT 0xc191
00702 #define PTP_EC_CANON_EOS_StoreAdded 0xc192
00703 #define PTP_EC_CANON_EOS_StoreRemoved 0xc193
00704 #define PTP_EC_CANON_EOS_BulbExposureTime 0xc194
00705 #define PTP_EC_CANON_EOS_RecordingTime 0xc195
00706 #define PTP_EC_CANON_EOS_RequestObjectTransferTS 0xC1a2
00707 #define PTP_EC_CANON_EOS_AfResult 0xc1a3
00708
00709
00710
00711
00712 #define PTP_EC_Nikon_ObjectAddedInSDRAM 0xC101
00713 #define PTP_EC_Nikon_CaptureCompleteRecInSdram 0xC102
00714
00715 #define PTP_EC_Nikon_AdvancedTransfer 0xC103
00716 #define PTP_EC_Nikon_PreviewImageAdded 0xC104
00717
00718
00719 #define PTP_EC_MTP_ObjectPropChanged 0xC801
00720 #define PTP_EC_MTP_ObjectPropDescChanged 0xC802
00721 #define PTP_EC_MTP_ObjectReferencesChanged 0xC803
00722
00723
00724 #define PTP_GOH_ALL_STORAGE 0xffffffff
00725 #define PTP_GOH_ALL_FORMATS 0x00000000
00726 #define PTP_GOH_ALL_ASSOCS 0x00000000
00727 #define PTP_GOH_ROOT_PARENT 0xffffffff
00728
00729
00730
00731 struct _PTPDeviceInfo {
00732 uint16_t StandardVersion;
00733 uint32_t VendorExtensionID;
00734 uint16_t VendorExtensionVersion;
00735 char *VendorExtensionDesc;
00736 uint16_t FunctionalMode;
00737 uint32_t OperationsSupported_len;
00738 uint16_t *OperationsSupported;
00739 uint32_t EventsSupported_len;
00740 uint16_t *EventsSupported;
00741 uint32_t DevicePropertiesSupported_len;
00742 uint16_t *DevicePropertiesSupported;
00743 uint32_t CaptureFormats_len;
00744 uint16_t *CaptureFormats;
00745 uint32_t ImageFormats_len;
00746 uint16_t *ImageFormats;
00747 char *Manufacturer;
00748 char *Model;
00749 char *DeviceVersion;
00750 char *SerialNumber;
00751 };
00752 typedef struct _PTPDeviceInfo PTPDeviceInfo;
00753
00754
00755
00756 struct _PTPStorageIDs {
00757 uint32_t n;
00758 uint32_t *Storage;
00759 };
00760 typedef struct _PTPStorageIDs PTPStorageIDs;
00761
00762
00763 struct _PTPStorageInfo {
00764 uint16_t StorageType;
00765 uint16_t FilesystemType;
00766 uint16_t AccessCapability;
00767 uint64_t MaxCapability;
00768 uint64_t FreeSpaceInBytes;
00769 uint32_t FreeSpaceInImages;
00770 char *StorageDescription;
00771 char *VolumeLabel;
00772 };
00773 typedef struct _PTPStorageInfo PTPStorageInfo;
00774
00775
00776
00777 struct _PTPObjectHandles {
00778 uint32_t n;
00779 uint32_t *Handler;
00780 };
00781 typedef struct _PTPObjectHandles PTPObjectHandles;
00782
00783 #define PTP_HANDLER_SPECIAL 0xffffffff
00784 #define PTP_HANDLER_ROOT 0x00000000
00785
00786
00787
00788
00789 struct _PTPObjectInfo {
00790 uint32_t StorageID;
00791 uint16_t ObjectFormat;
00792 uint16_t ProtectionStatus;
00793
00794
00795
00796
00797 uint64_t ObjectCompressedSize;
00798 uint16_t ThumbFormat;
00799 uint32_t ThumbCompressedSize;
00800 uint32_t ThumbPixWidth;
00801 uint32_t ThumbPixHeight;
00802 uint32_t ImagePixWidth;
00803 uint32_t ImagePixHeight;
00804 uint32_t ImageBitDepth;
00805 uint32_t ParentObject;
00806 uint16_t AssociationType;
00807 uint32_t AssociationDesc;
00808 uint32_t SequenceNumber;
00809 char *Filename;
00810 time_t CaptureDate;
00811 time_t ModificationDate;
00812 char *Keywords;
00813 };
00814 typedef struct _PTPObjectInfo PTPObjectInfo;
00815
00816
00817
00818 #define PTP_MAXSTRLEN 255
00819
00820
00821
00822
00823 #define PTP_OFC_Undefined 0x3000
00824 #define PTP_OFC_Defined 0x3800
00825 #define PTP_OFC_Association 0x3001
00826 #define PTP_OFC_Script 0x3002
00827 #define PTP_OFC_Executable 0x3003
00828 #define PTP_OFC_Text 0x3004
00829 #define PTP_OFC_HTML 0x3005
00830 #define PTP_OFC_DPOF 0x3006
00831 #define PTP_OFC_AIFF 0x3007
00832 #define PTP_OFC_WAV 0x3008
00833 #define PTP_OFC_MP3 0x3009
00834 #define PTP_OFC_AVI 0x300A
00835 #define PTP_OFC_MPEG 0x300B
00836 #define PTP_OFC_ASF 0x300C
00837 #define PTP_OFC_QT 0x300D
00838
00839 #define PTP_OFC_EXIF_JPEG 0x3801
00840 #define PTP_OFC_TIFF_EP 0x3802
00841 #define PTP_OFC_FlashPix 0x3803
00842 #define PTP_OFC_BMP 0x3804
00843 #define PTP_OFC_CIFF 0x3805
00844 #define PTP_OFC_Undefined_0x3806 0x3806
00845 #define PTP_OFC_GIF 0x3807
00846 #define PTP_OFC_JFIF 0x3808
00847 #define PTP_OFC_PCD 0x3809
00848 #define PTP_OFC_PICT 0x380A
00849 #define PTP_OFC_PNG 0x380B
00850 #define PTP_OFC_Undefined_0x380C 0x380C
00851 #define PTP_OFC_TIFF 0x380D
00852 #define PTP_OFC_TIFF_IT 0x380E
00853 #define PTP_OFC_JP2 0x380F
00854 #define PTP_OFC_JPX 0x3810
00855
00856 #define PTP_OFC_DNG 0x3811
00857
00858 #define PTP_OFC_EK_M3U 0xb002
00859
00860 #define PTP_OFC_CANON_CRW 0xb101
00861 #define PTP_OFC_CANON_CRW3 0xb103
00862 #define PTP_OFC_CANON_MOV 0xb104
00863
00864 #define PTP_OFC_CANON_CHDK_CRW 0xb1ff
00865
00866 #define PTP_OFC_MTP_MediaCard 0xb211
00867 #define PTP_OFC_MTP_MediaCardGroup 0xb212
00868 #define PTP_OFC_MTP_Encounter 0xb213
00869 #define PTP_OFC_MTP_EncounterBox 0xb214
00870 #define PTP_OFC_MTP_M4A 0xb215
00871 #define PTP_OFC_MTP_ZUNEUNDEFINED 0xb217
00872 #define PTP_OFC_MTP_Firmware 0xb802
00873 #define PTP_OFC_MTP_WindowsImageFormat 0xb881
00874 #define PTP_OFC_MTP_UndefinedAudio 0xb900
00875 #define PTP_OFC_MTP_WMA 0xb901
00876 #define PTP_OFC_MTP_OGG 0xb902
00877 #define PTP_OFC_MTP_AAC 0xb903
00878 #define PTP_OFC_MTP_AudibleCodec 0xb904
00879 #define PTP_OFC_MTP_FLAC 0xb906
00880 #define PTP_OFC_MTP_SamsungPlaylist 0xb909
00881 #define PTP_OFC_MTP_UndefinedVideo 0xb980
00882 #define PTP_OFC_MTP_WMV 0xb981
00883 #define PTP_OFC_MTP_MP4 0xb982
00884 #define PTP_OFC_MTP_MP2 0xb983
00885 #define PTP_OFC_MTP_3GP 0xb984
00886 #define PTP_OFC_MTP_UndefinedCollection 0xba00
00887 #define PTP_OFC_MTP_AbstractMultimediaAlbum 0xba01
00888 #define PTP_OFC_MTP_AbstractImageAlbum 0xba02
00889 #define PTP_OFC_MTP_AbstractAudioAlbum 0xba03
00890 #define PTP_OFC_MTP_AbstractVideoAlbum 0xba04
00891 #define PTP_OFC_MTP_AbstractAudioVideoPlaylist 0xba05
00892 #define PTP_OFC_MTP_AbstractContactGroup 0xba06
00893 #define PTP_OFC_MTP_AbstractMessageFolder 0xba07
00894 #define PTP_OFC_MTP_AbstractChapteredProduction 0xba08
00895 #define PTP_OFC_MTP_AbstractAudioPlaylist 0xba09
00896 #define PTP_OFC_MTP_AbstractVideoPlaylist 0xba0a
00897 #define PTP_OFC_MTP_AbstractMediacast 0xba0b
00898 #define PTP_OFC_MTP_WPLPlaylist 0xba10
00899 #define PTP_OFC_MTP_M3UPlaylist 0xba11
00900 #define PTP_OFC_MTP_MPLPlaylist 0xba12
00901 #define PTP_OFC_MTP_ASXPlaylist 0xba13
00902 #define PTP_OFC_MTP_PLSPlaylist 0xba14
00903 #define PTP_OFC_MTP_UndefinedDocument 0xba80
00904 #define PTP_OFC_MTP_AbstractDocument 0xba81
00905 #define PTP_OFC_MTP_XMLDocument 0xba82
00906 #define PTP_OFC_MTP_MSWordDocument 0xba83
00907 #define PTP_OFC_MTP_MHTCompiledHTMLDocument 0xba84
00908 #define PTP_OFC_MTP_MSExcelSpreadsheetXLS 0xba85
00909 #define PTP_OFC_MTP_MSPowerpointPresentationPPT 0xba86
00910 #define PTP_OFC_MTP_UndefinedMessage 0xbb00
00911 #define PTP_OFC_MTP_AbstractMessage 0xbb01
00912 #define PTP_OFC_MTP_UndefinedContact 0xbb80
00913 #define PTP_OFC_MTP_AbstractContact 0xbb81
00914 #define PTP_OFC_MTP_vCard2 0xbb82
00915 #define PTP_OFC_MTP_vCard3 0xbb83
00916 #define PTP_OFC_MTP_UndefinedCalendarItem 0xbe00
00917 #define PTP_OFC_MTP_AbstractCalendarItem 0xbe01
00918 #define PTP_OFC_MTP_vCalendar1 0xbe02
00919 #define PTP_OFC_MTP_vCalendar2 0xbe03
00920 #define PTP_OFC_MTP_UndefinedWindowsExecutable 0xbe80
00921 #define PTP_OFC_MTP_MediaCast 0xbe81
00922 #define PTP_OFC_MTP_Section 0xbe82
00923
00924
00925 #define PTP_AT_Undefined 0x0000
00926 #define PTP_AT_GenericFolder 0x0001
00927 #define PTP_AT_Album 0x0002
00928 #define PTP_AT_TimeSequence 0x0003
00929 #define PTP_AT_HorizontalPanoramic 0x0004
00930 #define PTP_AT_VerticalPanoramic 0x0005
00931 #define PTP_AT_2DPanoramic 0x0006
00932 #define PTP_AT_AncillaryData 0x0007
00933
00934
00935
00936 #define PTP_PS_NoProtection 0x0000
00937 #define PTP_PS_ReadOnly 0x0001
00938 #define PTP_PS_MTP_ReadOnlyData 0x8002
00939 #define PTP_PS_MTP_NonTransferableData 0x8003
00940
00941
00942
00943 #define PTP_ST_Undefined 0x0000
00944 #define PTP_ST_FixedROM 0x0001
00945 #define PTP_ST_RemovableROM 0x0002
00946 #define PTP_ST_FixedRAM 0x0003
00947 #define PTP_ST_RemovableRAM 0x0004
00948
00949
00950
00951 #define PTP_FST_Undefined 0x0000
00952 #define PTP_FST_GenericFlat 0x0001
00953 #define PTP_FST_GenericHierarchical 0x0002
00954 #define PTP_FST_DCF 0x0003
00955
00956
00957
00958 #define PTP_AC_ReadWrite 0x0000
00959 #define PTP_AC_ReadOnly 0x0001
00960 #define PTP_AC_ReadOnly_with_Object_Deletion 0x0002
00961
00962
00963
00964 union _PTPPropertyValue {
00965 char *str;
00966 uint8_t u8;
00967 int8_t i8;
00968 uint16_t u16;
00969 int16_t i16;
00970 uint32_t u32;
00971 int32_t i32;
00972 uint64_t u64;
00973 int64_t i64;
00974
00975 struct array {
00976 uint32_t count;
00977 union _PTPPropertyValue *v;
00978 } a;
00979 };
00980
00981 typedef union _PTPPropertyValue PTPPropertyValue;
00982
00983
00984 struct _MTPProperties {
00985 uint16_t property;
00986 uint16_t datatype;
00987 uint32_t ObjectHandle;
00988 PTPPropertyValue propval;
00989 };
00990 typedef struct _MTPProperties MTPProperties;
00991
00992 struct _PTPPropDescRangeForm {
00993 PTPPropertyValue MinimumValue;
00994 PTPPropertyValue MaximumValue;
00995 PTPPropertyValue StepSize;
00996 };
00997 typedef struct _PTPPropDescRangeForm PTPPropDescRangeForm;
00998
00999
01000
01001 struct _PTPPropDescEnumForm {
01002 uint16_t NumberOfValues;
01003 PTPPropertyValue *SupportedValue;
01004 };
01005 typedef struct _PTPPropDescEnumForm PTPPropDescEnumForm;
01006
01007
01008
01009 struct _PTPDevicePropDesc {
01010 uint16_t DevicePropertyCode;
01011 uint16_t DataType;
01012 uint8_t GetSet;
01013 PTPPropertyValue FactoryDefaultValue;
01014 PTPPropertyValue CurrentValue;
01015 uint8_t FormFlag;
01016 union {
01017 PTPPropDescEnumForm Enum;
01018 PTPPropDescRangeForm Range;
01019 } FORM;
01020 };
01021 typedef struct _PTPDevicePropDesc PTPDevicePropDesc;
01022
01023
01024
01025 struct _PTPObjectPropDesc {
01026 uint16_t ObjectPropertyCode;
01027 uint16_t DataType;
01028 uint8_t GetSet;
01029 PTPPropertyValue FactoryDefaultValue;
01030 uint32_t GroupCode;
01031 uint8_t FormFlag;
01032 union {
01033 PTPPropDescEnumForm Enum;
01034 PTPPropDescRangeForm Range;
01035 } FORM;
01036 };
01037 typedef struct _PTPObjectPropDesc PTPObjectPropDesc;
01038
01039
01040
01041 #define PTP_CANON_FilenameBufferLen 13
01042 #define PTP_CANON_FolderEntryLen 28
01043
01044 struct _PTPCANONFolderEntry {
01045 uint32_t ObjectHandle;
01046 uint16_t ObjectFormatCode;
01047 uint8_t Flags;
01048 uint32_t ObjectSize;
01049 time_t Time;
01050 char Filename[PTP_CANON_FilenameBufferLen];
01051
01052 uint32_t StorageID;
01053 };
01054 typedef struct _PTPCANONFolderEntry PTPCANONFolderEntry;
01055
01056
01057
01058 #define PTP_NIKON_MaxCurvePoints 19
01059
01060 struct _PTPNIKONCoordinatePair {
01061 uint8_t X;
01062 uint8_t Y;
01063 };
01064
01065 typedef struct _PTPNIKONCoordinatePair PTPNIKONCoordinatePair;
01066
01067 struct _PTPNTCCoordinatePair {
01068 uint8_t X;
01069 uint8_t Y;
01070 };
01071
01072 typedef struct _PTPNTCCoordinatePair PTPNTCCoordinatePair;
01073
01074 struct _PTPNIKONCurveData {
01075 char static_preamble[6];
01076 uint8_t XAxisStartPoint;
01077 uint8_t XAxisEndPoint;
01078 uint8_t YAxisStartPoint;
01079 uint8_t YAxisEndPoint;
01080 uint8_t MidPointIntegerPart;
01081 uint8_t MidPointDecimalPart;
01082 uint8_t NCoordinates;
01083 PTPNIKONCoordinatePair CurveCoordinates[PTP_NIKON_MaxCurvePoints];
01084 };
01085
01086 typedef struct _PTPNIKONCurveData PTPNIKONCurveData;
01087
01088 struct _PTPEKTextParams {
01089 char *title;
01090 char *line[5];
01091 };
01092 typedef struct _PTPEKTextParams PTPEKTextParams;
01093
01094
01095
01096 struct _PTPNIKONWifiProfile {
01097
01098 char profile_name[17];
01099 uint8_t device_type;
01100 uint8_t icon_type;
01101 char essid[33];
01102
01103
01104
01105 uint8_t id;
01106 uint8_t valid;
01107 uint8_t display_order;
01108 char creation_date[16];
01109 char lastusage_date[16];
01110
01111
01112 uint32_t ip_address;
01113 uint8_t subnet_mask;
01114 uint32_t gateway_address;
01115 uint8_t address_mode;
01116 uint8_t access_mode;
01117 uint8_t wifi_channel;
01118 uint8_t authentification;
01119 uint8_t encryption;
01120 uint8_t key[64];
01121 uint8_t key_nr;
01122
01123 };
01124
01125 typedef struct _PTPNIKONWifiProfile PTPNIKONWifiProfile;
01126
01127 #define PTP_CANON_EOS_CHANGES_TYPE_UNKNOWN 0
01128 #define PTP_CANON_EOS_CHANGES_TYPE_OBJECTINFO 1
01129 #define PTP_CANON_EOS_CHANGES_TYPE_OBJECTTRANSFER 2
01130 #define PTP_CANON_EOS_CHANGES_TYPE_PROPERTY 3
01131 #define PTP_CANON_EOS_CHANGES_TYPE_CAMERASTATUS 4
01132
01133 struct _PTPCanon_New_Object {
01134 uint32_t oid;
01135 PTPObjectInfo oi;
01136 };
01137
01138 struct _PTPCanon_changes_entry {
01139 int type;
01140 union {
01141 struct _PTPCanon_New_Object object;
01142 char *info;
01143 uint16_t propid;
01144 int status;
01145 } u;
01146 };
01147 typedef struct _PTPCanon_changes_entry PTPCanon_changes_entry;
01148
01149 typedef struct _PTPCanon_Property {
01150 uint32_t size;
01151 uint32_t type;
01152 uint32_t proptype;
01153 unsigned char *data;
01154
01155
01156 PTPDevicePropDesc dpd;
01157 } PTPCanon_Property;
01158
01159 typedef struct _PTPCanonEOSDeviceInfo {
01160
01161 uint32_t EventsSupported_len;
01162 uint32_t *EventsSupported;
01163
01164 uint32_t DevicePropertiesSupported_len;
01165 uint32_t *DevicePropertiesSupported;
01166
01167 uint32_t unk_len;
01168 uint32_t *unk;
01169 } PTPCanonEOSDeviceInfo;
01170
01171
01172
01173 #define PTP_DTC_UNDEF 0x0000
01174 #define PTP_DTC_INT8 0x0001
01175 #define PTP_DTC_UINT8 0x0002
01176 #define PTP_DTC_INT16 0x0003
01177 #define PTP_DTC_UINT16 0x0004
01178 #define PTP_DTC_INT32 0x0005
01179 #define PTP_DTC_UINT32 0x0006
01180 #define PTP_DTC_INT64 0x0007
01181 #define PTP_DTC_UINT64 0x0008
01182 #define PTP_DTC_INT128 0x0009
01183 #define PTP_DTC_UINT128 0x000A
01184
01185 #define PTP_DTC_ARRAY_MASK 0x4000
01186
01187 #define PTP_DTC_AINT8 (PTP_DTC_ARRAY_MASK | PTP_DTC_INT8)
01188 #define PTP_DTC_AUINT8 (PTP_DTC_ARRAY_MASK | PTP_DTC_UINT8)
01189 #define PTP_DTC_AINT16 (PTP_DTC_ARRAY_MASK | PTP_DTC_INT16)
01190 #define PTP_DTC_AUINT16 (PTP_DTC_ARRAY_MASK | PTP_DTC_UINT16)
01191 #define PTP_DTC_AINT32 (PTP_DTC_ARRAY_MASK | PTP_DTC_INT32)
01192 #define PTP_DTC_AUINT32 (PTP_DTC_ARRAY_MASK | PTP_DTC_UINT32)
01193 #define PTP_DTC_AINT64 (PTP_DTC_ARRAY_MASK | PTP_DTC_INT64)
01194 #define PTP_DTC_AUINT64 (PTP_DTC_ARRAY_MASK | PTP_DTC_UINT64)
01195 #define PTP_DTC_AINT128 (PTP_DTC_ARRAY_MASK | PTP_DTC_INT128)
01196 #define PTP_DTC_AUINT128 (PTP_DTC_ARRAY_MASK | PTP_DTC_UINT128)
01197
01198 #define PTP_DTC_STR 0xFFFF
01199
01200
01201
01202
01203 #define PTP_DPC_Undefined 0x5000
01204 #define PTP_DPC_BatteryLevel 0x5001
01205 #define PTP_DPC_FunctionalMode 0x5002
01206 #define PTP_DPC_ImageSize 0x5003
01207 #define PTP_DPC_CompressionSetting 0x5004
01208 #define PTP_DPC_WhiteBalance 0x5005
01209 #define PTP_DPC_RGBGain 0x5006
01210 #define PTP_DPC_FNumber 0x5007
01211 #define PTP_DPC_FocalLength 0x5008
01212 #define PTP_DPC_FocusDistance 0x5009
01213 #define PTP_DPC_FocusMode 0x500A
01214 #define PTP_DPC_ExposureMeteringMode 0x500B
01215 #define PTP_DPC_FlashMode 0x500C
01216 #define PTP_DPC_ExposureTime 0x500D
01217 #define PTP_DPC_ExposureProgramMode 0x500E
01218 #define PTP_DPC_ExposureIndex 0x500F
01219 #define PTP_DPC_ExposureBiasCompensation 0x5010
01220 #define PTP_DPC_DateTime 0x5011
01221 #define PTP_DPC_CaptureDelay 0x5012
01222 #define PTP_DPC_StillCaptureMode 0x5013
01223 #define PTP_DPC_Contrast 0x5014
01224 #define PTP_DPC_Sharpness 0x5015
01225 #define PTP_DPC_DigitalZoom 0x5016
01226 #define PTP_DPC_EffectMode 0x5017
01227 #define PTP_DPC_BurstNumber 0x5018
01228 #define PTP_DPC_BurstInterval 0x5019
01229 #define PTP_DPC_TimelapseNumber 0x501A
01230 #define PTP_DPC_TimelapseInterval 0x501B
01231 #define PTP_DPC_FocusMeteringMode 0x501C
01232 #define PTP_DPC_UploadURL 0x501D
01233 #define PTP_DPC_Artist 0x501E
01234 #define PTP_DPC_CopyrightInfo 0x501F
01235
01236 #define PTP_DPC_SupportedStreams 0x5020
01237 #define PTP_DPC_EnabledStreams 0x5021
01238 #define PTP_DPC_VideoFormat 0x5022
01239 #define PTP_DPC_VideoResolution 0x5023
01240 #define PTP_DPC_VideoQuality 0x5024
01241 #define PTP_DPC_VideoFrameRate 0x5025
01242 #define PTP_DPC_VideoContrast 0x5026
01243 #define PTP_DPC_VideoBrightness 0x5027
01244 #define PTP_DPC_AudioFormat 0x5028
01245 #define PTP_DPC_AudioBitrate 0x5029
01246 #define PTP_DPC_AudioSamplingRate 0x502A
01247 #define PTP_DPC_AudioBitPerSample 0x502B
01248 #define PTP_DPC_AudioVolume 0x502C
01249
01250
01251 #define PTP_DPC_EXTENSION_MASK 0xF000
01252 #define PTP_DPC_EXTENSION 0xD000
01253
01254
01255 #define PTP_DPC_MTP_ZUNE_UNKNOWN1 0xD181
01256 #define PTP_DPC_MTP_ZUNE_UNKNOWN2 0xD132
01257 #define PTP_DPC_MTP_ZUNE_UNKNOWN3 0xD215
01258 #define PTP_DPC_MTP_ZUNE_UNKNOWN4 0xD216
01259
01260
01261 #define PTP_DPC_EK_ColorTemperature 0xD001
01262 #define PTP_DPC_EK_DateTimeStampFormat 0xD002
01263 #define PTP_DPC_EK_BeepMode 0xD003
01264 #define PTP_DPC_EK_VideoOut 0xD004
01265 #define PTP_DPC_EK_PowerSaving 0xD005
01266 #define PTP_DPC_EK_UI_Language 0xD006
01267
01268
01269 #define PTP_DPC_CANON_BeepMode 0xD001
01270 #define PTP_DPC_CANON_BatteryKind 0xD002
01271 #define PTP_DPC_CANON_BatteryStatus 0xD003
01272 #define PTP_DPC_CANON_UILockType 0xD004
01273 #define PTP_DPC_CANON_CameraMode 0xD005
01274 #define PTP_DPC_CANON_ImageQuality 0xD006
01275 #define PTP_DPC_CANON_FullViewFileFormat 0xD007
01276 #define PTP_DPC_CANON_ImageSize 0xD008
01277 #define PTP_DPC_CANON_SelfTime 0xD009
01278 #define PTP_DPC_CANON_FlashMode 0xD00A
01279 #define PTP_DPC_CANON_Beep 0xD00B
01280 #define PTP_DPC_CANON_ShootingMode 0xD00C
01281 #define PTP_DPC_CANON_ImageMode 0xD00D
01282 #define PTP_DPC_CANON_DriveMode 0xD00E
01283 #define PTP_DPC_CANON_EZoom 0xD00F
01284 #define PTP_DPC_CANON_MeteringMode 0xD010
01285 #define PTP_DPC_CANON_AFDistance 0xD011
01286 #define PTP_DPC_CANON_FocusingPoint 0xD012
01287 #define PTP_DPC_CANON_WhiteBalance 0xD013
01288 #define PTP_DPC_CANON_SlowShutterSetting 0xD014
01289 #define PTP_DPC_CANON_AFMode 0xD015
01290 #define PTP_DPC_CANON_ImageStabilization 0xD016
01291 #define PTP_DPC_CANON_Contrast 0xD017
01292 #define PTP_DPC_CANON_ColorGain 0xD018
01293 #define PTP_DPC_CANON_Sharpness 0xD019
01294 #define PTP_DPC_CANON_Sensitivity 0xD01A
01295 #define PTP_DPC_CANON_ParameterSet 0xD01B
01296 #define PTP_DPC_CANON_ISOSpeed 0xD01C
01297 #define PTP_DPC_CANON_Aperture 0xD01D
01298 #define PTP_DPC_CANON_ShutterSpeed 0xD01E
01299 #define PTP_DPC_CANON_ExpCompensation 0xD01F
01300 #define PTP_DPC_CANON_FlashCompensation 0xD020
01301 #define PTP_DPC_CANON_AEBExposureCompensation 0xD021
01302 #define PTP_DPC_CANON_AvOpen 0xD023
01303 #define PTP_DPC_CANON_AvMax 0xD024
01304 #define PTP_DPC_CANON_FocalLength 0xD025
01305 #define PTP_DPC_CANON_FocalLengthTele 0xD026
01306 #define PTP_DPC_CANON_FocalLengthWide 0xD027
01307 #define PTP_DPC_CANON_FocalLengthDenominator 0xD028
01308 #define PTP_DPC_CANON_CaptureTransferMode 0xD029
01309 #define CANON_TRANSFER_ENTIRE_IMAGE_TO_PC 0x0002
01310 #define CANON_TRANSFER_SAVE_THUMBNAIL_TO_DEVICE 0x0004
01311 #define CANON_TRANSFER_SAVE_IMAGE_TO_DEVICE 0x0008
01312
01313 #define CANON_TRANSFER_MEMORY (2|1)
01314 #define CANON_TRANSFER_CARD (8|4|1)
01315
01316 #define PTP_DPC_CANON_Zoom 0xD02A
01317 #define PTP_DPC_CANON_NamePrefix 0xD02B
01318 #define PTP_DPC_CANON_SizeQualityMode 0xD02C
01319 #define PTP_DPC_CANON_SupportedThumbSize 0xD02D
01320 #define PTP_DPC_CANON_SizeOfOutputDataFromCamera 0xD02E
01321 #define PTP_DPC_CANON_SizeOfInputDataToCamera 0xD02F
01322 #define PTP_DPC_CANON_RemoteAPIVersion 0xD030
01323 #define PTP_DPC_CANON_FirmwareVersion 0xD031
01324 #define PTP_DPC_CANON_CameraModel 0xD032
01325 #define PTP_DPC_CANON_CameraOwner 0xD033
01326 #define PTP_DPC_CANON_UnixTime 0xD034
01327 #define PTP_DPC_CANON_CameraBodyID 0xD035
01328 #define PTP_DPC_CANON_CameraOutput 0xD036
01329 #define PTP_DPC_CANON_DispAv 0xD037
01330 #define PTP_DPC_CANON_AvOpenApex 0xD038
01331 #define PTP_DPC_CANON_DZoomMagnification 0xD039
01332 #define PTP_DPC_CANON_MlSpotPos 0xD03A
01333 #define PTP_DPC_CANON_DispAvMax 0xD03B
01334 #define PTP_DPC_CANON_AvMaxApex 0xD03C
01335 #define PTP_DPC_CANON_EZoomStartPosition 0xD03D
01336 #define PTP_DPC_CANON_FocalLengthOfTele 0xD03E
01337 #define PTP_DPC_CANON_EZoomSizeOfTele 0xD03F
01338 #define PTP_DPC_CANON_PhotoEffect 0xD040
01339 #define PTP_DPC_CANON_AssistLight 0xD041
01340 #define PTP_DPC_CANON_FlashQuantityCount 0xD042
01341 #define PTP_DPC_CANON_RotationAngle 0xD043
01342 #define PTP_DPC_CANON_RotationScene 0xD044
01343 #define PTP_DPC_CANON_EventEmulateMode 0xD045
01344 #define PTP_DPC_CANON_DPOFVersion 0xD046
01345 #define PTP_DPC_CANON_TypeOfSupportedSlideShow 0xD047
01346 #define PTP_DPC_CANON_AverageFilesizes 0xD048
01347 #define PTP_DPC_CANON_ModelID 0xD049
01348
01349
01350 #define PTP_DPC_CANON_EOS_Aperture 0xD101
01351 #define PTP_DPC_CANON_EOS_ShutterSpeed 0xD102
01352 #define PTP_DPC_CANON_EOS_ISOSpeed 0xD103
01353 #define PTP_DPC_CANON_EOS_ExpCompensation 0xD104
01354 #define PTP_DPC_CANON_EOS_AutoExposureMode 0xD105
01355 #define PTP_DPC_CANON_EOS_DriveMode 0xD106
01356 #define PTP_DPC_CANON_EOS_MeteringMode 0xD107
01357 #define PTP_DPC_CANON_EOS_FocusMode 0xD108
01358 #define PTP_DPC_CANON_EOS_WhiteBalance 0xD109
01359 #define PTP_DPC_CANON_EOS_ColorTemperature 0xD10A
01360 #define PTP_DPC_CANON_EOS_WhiteBalanceAdjustA 0xD10B
01361 #define PTP_DPC_CANON_EOS_WhiteBalanceAdjustB 0xD10C
01362 #define PTP_DPC_CANON_EOS_WhiteBalanceXA 0xD10D
01363 #define PTP_DPC_CANON_EOS_WhiteBalanceXB 0xD10E
01364 #define PTP_DPC_CANON_EOS_ColorSpace 0xD10F
01365 #define PTP_DPC_CANON_EOS_PictureStyle 0xD110
01366 #define PTP_DPC_CANON_EOS_BatteryPower 0xD111
01367 #define PTP_DPC_CANON_EOS_BatterySelect 0xD112
01368 #define PTP_DPC_CANON_EOS_CameraTime 0xD113
01369 #define PTP_DPC_CANON_EOS_Owner 0xD115
01370 #define PTP_DPC_CANON_EOS_ModelID 0xD116
01371 #define PTP_DPC_CANON_EOS_PTPExtensionVersion 0xD119
01372 #define PTP_DPC_CANON_EOS_DPOFVersion 0xD11A
01373 #define PTP_DPC_CANON_EOS_AvailableShots 0xD11B
01374 #define PTP_CANON_EOS_CAPTUREDEST_HD 4
01375 #define PTP_DPC_CANON_EOS_CaptureDestination 0xD11C
01376 #define PTP_DPC_CANON_EOS_BracketMode 0xD11D
01377 #define PTP_DPC_CANON_EOS_CurrentStorage 0xD11E
01378 #define PTP_DPC_CANON_EOS_CurrentFolder 0xD11F
01379 #define PTP_DPC_CANON_EOS_ImageFormat 0xD120
01380 #define PTP_DPC_CANON_EOS_ImageFormatCF 0xD121
01381 #define PTP_DPC_CANON_EOS_ImageFormatSD 0xD122
01382 #define PTP_DPC_CANON_EOS_ImageFormatExtHD 0xD123
01383 #define PTP_DPC_CANON_EOS_CompressionS 0xD130
01384 #define PTP_DPC_CANON_EOS_CompressionM1 0xD131
01385 #define PTP_DPC_CANON_EOS_CompressionM2 0xD132
01386 #define PTP_DPC_CANON_EOS_CompressionL 0xD133
01387 #define PTP_DPC_CANON_EOS_PCWhiteBalance1 0xD140
01388 #define PTP_DPC_CANON_EOS_PCWhiteBalance2 0xD141
01389 #define PTP_DPC_CANON_EOS_PCWhiteBalance3 0xD142
01390 #define PTP_DPC_CANON_EOS_PCWhiteBalance4 0xD143
01391 #define PTP_DPC_CANON_EOS_PCWhiteBalance5 0xD144
01392 #define PTP_DPC_CANON_EOS_MWhiteBalance 0xD145
01393 #define PTP_DPC_CANON_EOS_PictureStyleStandard 0xD150
01394 #define PTP_DPC_CANON_EOS_PictureStylePortrait 0xD151
01395 #define PTP_DPC_CANON_EOS_PictureStyleLandscape 0xD152
01396 #define PTP_DPC_CANON_EOS_PictureStyleNeutral 0xD153
01397 #define PTP_DPC_CANON_EOS_PictureStyleFaithful 0xD154
01398 #define PTP_DPC_CANON_EOS_PictureStyleBlackWhite 0xD155
01399 #define PTP_DPC_CANON_EOS_PictureStyleUserSet1 0xD160
01400 #define PTP_DPC_CANON_EOS_PictureStyleUserSet2 0xD161
01401 #define PTP_DPC_CANON_EOS_PictureStyleUserSet3 0xD162
01402 #define PTP_DPC_CANON_EOS_PictureStyleParam1 0xD170
01403 #define PTP_DPC_CANON_EOS_PictureStyleParam2 0xD171
01404 #define PTP_DPC_CANON_EOS_PictureStyleParam3 0xD172
01405 #define PTP_DPC_CANON_EOS_FlavorLUTParams 0xD17f
01406 #define PTP_DPC_CANON_EOS_CustomFunc1 0xD180
01407 #define PTP_DPC_CANON_EOS_CustomFunc2 0xD181
01408 #define PTP_DPC_CANON_EOS_CustomFunc3 0xD182
01409 #define PTP_DPC_CANON_EOS_CustomFunc4 0xD183
01410 #define PTP_DPC_CANON_EOS_CustomFunc5 0xD184
01411 #define PTP_DPC_CANON_EOS_CustomFunc6 0xD185
01412 #define PTP_DPC_CANON_EOS_CustomFunc7 0xD186
01413 #define PTP_DPC_CANON_EOS_CustomFunc8 0xD187
01414 #define PTP_DPC_CANON_EOS_CustomFunc9 0xD188
01415 #define PTP_DPC_CANON_EOS_CustomFunc10 0xD189
01416 #define PTP_DPC_CANON_EOS_CustomFunc11 0xD18a
01417 #define PTP_DPC_CANON_EOS_CustomFunc12 0xD18b
01418 #define PTP_DPC_CANON_EOS_CustomFunc13 0xD18c
01419 #define PTP_DPC_CANON_EOS_CustomFunc14 0xD18d
01420 #define PTP_DPC_CANON_EOS_CustomFunc15 0xD18e
01421 #define PTP_DPC_CANON_EOS_CustomFunc16 0xD18f
01422 #define PTP_DPC_CANON_EOS_CustomFunc17 0xD190
01423 #define PTP_DPC_CANON_EOS_CustomFunc18 0xD191
01424 #define PTP_DPC_CANON_EOS_CustomFunc19 0xD192
01425 #define PTP_DPC_CANON_EOS_CustomFunc19 0xD192
01426 #define PTP_DPC_CANON_EOS_CustomFuncEx 0xD1a0
01427 #define PTP_DPC_CANON_EOS_MyMenu 0xD1a1
01428 #define PTP_DPC_CANON_EOS_MyMenuList 0xD1a2
01429 #define PTP_DPC_CANON_EOS_WftStatus 0xD1a3
01430 #define PTP_DPC_CANON_EOS_WftInputTransmission 0xD1a4
01431 #define PTP_DPC_CANON_EOS_HDDirectoryStructure 0xD1a5
01432 #define PTP_DPC_CANON_EOS_BatteryInfo 0xD1a6
01433 #define PTP_DPC_CANON_EOS_AdapterInfo 0xD1a7
01434 #define PTP_DPC_CANON_EOS_LensStatus 0xD1a8
01435 #define PTP_DPC_CANON_EOS_QuickReviewTime 0xD1a9
01436 #define PTP_DPC_CANON_EOS_CardExtension 0xD1aa
01437 #define PTP_DPC_CANON_EOS_TempStatus 0xD1ab
01438 #define PTP_DPC_CANON_EOS_ShutterCounter 0xD1ac
01439 #define PTP_DPC_CANON_EOS_SpecialOption 0xD1ad
01440 #define PTP_DPC_CANON_EOS_PhotoStudioMode 0xD1ae
01441 #define PTP_DPC_CANON_EOS_SerialNumber 0xD1af
01442 #define PTP_DPC_CANON_EOS_EVFOutputDevice 0xD1b0
01443 #define PTP_DPC_CANON_EOS_EVFMode 0xD1b1
01444 #define PTP_DPC_CANON_EOS_DepthOfFieldPreview 0xD1b2
01445 #define PTP_DPC_CANON_EOS_EVFSharpness 0xD1b3
01446 #define PTP_DPC_CANON_EOS_EVFWBMode 0xD1b4
01447 #define PTP_DPC_CANON_EOS_EVFClickWBCoeffs 0xD1b5
01448 #define PTP_DPC_CANON_EOS_EVFColorTemp 0xD1b6
01449 #define PTP_DPC_CANON_EOS_ExposureSimMode 0xD1b7
01450 #define PTP_DPC_CANON_EOS_EVFRecordStatus 0xD1b8
01451 #define PTP_DPC_CANON_EOS_LvAfSystem 0xD1ba
01452 #define PTP_DPC_CANON_EOS_MovSize 0xD1bb
01453 #define PTP_DPC_CANON_EOS_LvViewTypeSelect 0xD1bc
01454 #define PTP_DPC_CANON_EOS_Artist 0xD1d0
01455 #define PTP_DPC_CANON_EOS_Copyright 0xD1d1
01456 #define PTP_DPC_CANON_EOS_BracketValue 0xD1d2
01457 #define PTP_DPC_CANON_EOS_FocusInfoEx 0xD1d3
01458 #define PTP_DPC_CANON_EOS_DepthOfField 0xD1d4
01459 #define PTP_DPC_CANON_EOS_Brightness 0xD1d5
01460 #define PTP_DPC_CANON_EOS_LensAdjustParams 0xD1d6
01461 #define PTP_DPC_CANON_EOS_EFComp 0xD1d7
01462 #define PTP_DPC_CANON_EOS_LensName 0xD1d8
01463 #define PTP_DPC_CANON_EOS_AEB 0xD1d9
01464 #define PTP_DPC_CANON_EOS_StroboSetting 0xD1da
01465 #define PTP_DPC_CANON_EOS_StroboWirelessSetting 0xD1db
01466 #define PTP_DPC_CANON_EOS_StroboFiring 0xD1dc
01467 #define PTP_DPC_CANON_EOS_LensID 0xD1dd
01468
01469
01470 #define PTP_DPC_NIKON_ShootingBank 0xD010
01471 #define PTP_DPC_NIKON_ShootingBankNameA 0xD011
01472 #define PTP_DPC_NIKON_ShootingBankNameB 0xD012
01473 #define PTP_DPC_NIKON_ShootingBankNameC 0xD013
01474 #define PTP_DPC_NIKON_ShootingBankNameD 0xD014
01475 #define PTP_DPC_NIKON_ResetBank0 0xD015
01476 #define PTP_DPC_NIKON_RawCompression 0xD016
01477 #define PTP_DPC_NIKON_WhiteBalanceAutoBias 0xD017
01478 #define PTP_DPC_NIKON_WhiteBalanceTungstenBias 0xD018
01479 #define PTP_DPC_NIKON_WhiteBalanceFluorescentBias 0xD019
01480 #define PTP_DPC_NIKON_WhiteBalanceDaylightBias 0xD01A
01481 #define PTP_DPC_NIKON_WhiteBalanceFlashBias 0xD01B
01482 #define PTP_DPC_NIKON_WhiteBalanceCloudyBias 0xD01C
01483 #define PTP_DPC_NIKON_WhiteBalanceShadeBias 0xD01D
01484 #define PTP_DPC_NIKON_WhiteBalanceColorTemperature 0xD01E
01485 #define PTP_DPC_NIKON_WhiteBalancePresetNo 0xD01F
01486 #define PTP_DPC_NIKON_WhiteBalancePresetName0 0xD020
01487 #define PTP_DPC_NIKON_WhiteBalancePresetName1 0xD021
01488 #define PTP_DPC_NIKON_WhiteBalancePresetName2 0xD022
01489 #define PTP_DPC_NIKON_WhiteBalancePresetName3 0xD023
01490 #define PTP_DPC_NIKON_WhiteBalancePresetName4 0xD024
01491 #define PTP_DPC_NIKON_WhiteBalancePresetVal0 0xD025
01492 #define PTP_DPC_NIKON_WhiteBalancePresetVal1 0xD026
01493 #define PTP_DPC_NIKON_WhiteBalancePresetVal2 0xD027
01494 #define PTP_DPC_NIKON_WhiteBalancePresetVal3 0xD028
01495 #define PTP_DPC_NIKON_WhiteBalancePresetVal4 0xD029
01496 #define PTP_DPC_NIKON_ImageSharpening 0xD02A
01497 #define PTP_DPC_NIKON_ToneCompensation 0xD02B
01498 #define PTP_DPC_NIKON_ColorModel 0xD02C
01499 #define PTP_DPC_NIKON_HueAdjustment 0xD02D
01500 #define PTP_DPC_NIKON_NonCPULensDataFocalLength 0xD02E
01501 #define PTP_DPC_NIKON_NonCPULensDataMaximumAperture 0xD02F
01502 #define PTP_DPC_NIKON_ShootingMode 0xD030
01503 #define PTP_DPC_NIKON_JPEG_Compression_Policy 0xD031
01504 #define PTP_DPC_NIKON_ColorSpace 0xD032
01505 #define PTP_DPC_NIKON_AutoDXCrop 0xD033
01506 #define PTP_DPC_NIKON_VideoMode 0xD036
01507 #define PTP_DPC_NIKON_EffectMode 0xD037
01508 #define PTP_DPC_NIKON_CSMMenuBankSelect 0xD040
01509 #define PTP_DPC_NIKON_MenuBankNameA 0xD041
01510 #define PTP_DPC_NIKON_MenuBankNameB 0xD042
01511 #define PTP_DPC_NIKON_MenuBankNameC 0xD043
01512 #define PTP_DPC_NIKON_MenuBankNameD 0xD044
01513 #define PTP_DPC_NIKON_ResetBank 0xD045
01514 #define PTP_DPC_NIKON_A1AFCModePriority 0xD048
01515 #define PTP_DPC_NIKON_A2AFSModePriority 0xD049
01516 #define PTP_DPC_NIKON_A3GroupDynamicAF 0xD04A
01517 #define PTP_DPC_NIKON_A4AFActivation 0xD04B
01518 #define PTP_DPC_NIKON_FocusAreaIllumManualFocus 0xD04C
01519 #define PTP_DPC_NIKON_FocusAreaIllumContinuous 0xD04D
01520 #define PTP_DPC_NIKON_FocusAreaIllumWhenSelected 0xD04E
01521 #define PTP_DPC_NIKON_FocusAreaWrap 0xD04F
01522 #define PTP_DPC_NIKON_VerticalAFON 0xD050
01523 #define PTP_DPC_NIKON_AFLockOn 0xD051
01524 #define PTP_DPC_NIKON_FocusAreaZone 0xD052
01525 #define PTP_DPC_NIKON_EnableCopyright 0xD053
01526 #define PTP_DPC_NIKON_ISOAuto 0xD054
01527 #define PTP_DPC_NIKON_EVISOStep 0xD055
01528 #define PTP_DPC_NIKON_EVStep 0xD056
01529 #define PTP_DPC_NIKON_EVStepExposureComp 0xD057
01530 #define PTP_DPC_NIKON_ExposureCompensation 0xD058
01531 #define PTP_DPC_NIKON_CenterWeightArea 0xD059
01532 #define PTP_DPC_NIKON_ExposureBaseMatrix 0xD05A
01533 #define PTP_DPC_NIKON_ExposureBaseCenter 0xD05B
01534 #define PTP_DPC_NIKON_ExposureBaseSpot 0xD05C
01535 #define PTP_DPC_NIKON_LiveViewAFArea 0xD05D
01536 #define PTP_DPC_NIKON_AELockMode 0xD05E
01537 #define PTP_DPC_NIKON_AELAFLMode 0xD05F
01538 #define PTP_DPC_NIKON_LiveViewAFFocus 0xD061
01539 #define PTP_DPC_NIKON_MeterOff 0xD062
01540 #define PTP_DPC_NIKON_SelfTimer 0xD063
01541 #define PTP_DPC_NIKON_MonitorOff 0xD064
01542 #define PTP_DPC_NIKON_ImgConfTime 0xD065
01543 #define PTP_DPC_NIKON_AutoOffTimers 0xD066
01544 #define PTP_DPC_NIKON_AngleLevel 0xD067
01545 #define PTP_DPC_NIKON_D1ShootingSpeed 0xD068
01546 #define PTP_DPC_NIKON_D2MaximumShots 0xD069
01547 #define PTP_DPC_NIKON_ExposureDelayMode 0xD06A
01548 #define PTP_DPC_NIKON_LongExposureNoiseReduction 0xD06B
01549 #define PTP_DPC_NIKON_FileNumberSequence 0xD06C
01550 #define PTP_DPC_NIKON_ControlPanelFinderRearControl 0xD06D
01551 #define PTP_DPC_NIKON_ControlPanelFinderViewfinder 0xD06E
01552 #define PTP_DPC_NIKON_D7Illumination 0xD06F
01553 #define PTP_DPC_NIKON_NrHighISO 0xD070
01554 #define PTP_DPC_NIKON_SHSET_CH_GUID_DISP 0xD071
01555 #define PTP_DPC_NIKON_ArtistName 0xD072
01556 #define PTP_DPC_NIKON_CopyrightInfo 0xD073
01557 #define PTP_DPC_NIKON_FlashSyncSpeed 0xD074
01558 #define PTP_DPC_NIKON_FlashShutterSpeed 0xD075
01559 #define PTP_DPC_NIKON_E3AAFlashMode 0xD076
01560 #define PTP_DPC_NIKON_E4ModelingFlash 0xD077
01561 #define PTP_DPC_NIKON_BracketSet 0xD078
01562 #define PTP_DPC_NIKON_E6ManualModeBracketing 0xD079
01563 #define PTP_DPC_NIKON_BracketOrder 0xD07A
01564 #define PTP_DPC_NIKON_E8AutoBracketSelection 0xD07B
01565 #define PTP_DPC_NIKON_BracketingSet 0xD07C
01566 #define PTP_DPC_NIKON_F1CenterButtonShootingMode 0xD080
01567 #define PTP_DPC_NIKON_CenterButtonPlaybackMode 0xD081
01568 #define PTP_DPC_NIKON_F2Multiselector 0xD082
01569 #define PTP_DPC_NIKON_F3PhotoInfoPlayback 0xD083
01570 #define PTP_DPC_NIKON_F4AssignFuncButton 0xD084
01571 #define PTP_DPC_NIKON_F5CustomizeCommDials 0xD085
01572 #define PTP_DPC_NIKON_ReverseCommandDial 0xD086
01573 #define PTP_DPC_NIKON_ApertureSetting 0xD087
01574 #define PTP_DPC_NIKON_MenusAndPlayback 0xD088
01575 #define PTP_DPC_NIKON_F6ButtonsAndDials 0xD089
01576 #define PTP_DPC_NIKON_NoCFCard 0xD08A
01577 #define PTP_DPC_NIKON_CenterButtonZoomRatio 0xD08B
01578 #define PTP_DPC_NIKON_FunctionButton2 0xD08C
01579 #define PTP_DPC_NIKON_AFAreaPoint 0xD08D
01580 #define PTP_DPC_NIKON_NormalAFOn 0xD08E
01581 #define PTP_DPC_NIKON_CleanImageSensor 0xD08F
01582 #define PTP_DPC_NIKON_ImageCommentString 0xD090
01583 #define PTP_DPC_NIKON_ImageCommentEnable 0xD091
01584 #define PTP_DPC_NIKON_ImageRotation 0xD092
01585 #define PTP_DPC_NIKON_ManualSetLensNo 0xD093
01586 #define PTP_DPC_NIKON_MovScreenSize 0xD0A0
01587 #define PTP_DPC_NIKON_MovVoice 0xD0A1
01588 #define PTP_DPC_NIKON_MovMicrophone 0xD0A2
01589 #define PTP_DPC_NIKON_Bracketing 0xD0C0
01590 #define PTP_DPC_NIKON_AutoExposureBracketStep 0xD0C1
01591 #define PTP_DPC_NIKON_AutoExposureBracketProgram 0xD0C2
01592 #define PTP_DPC_NIKON_AutoExposureBracketCount 0xD0C3
01593 #define PTP_DPC_NIKON_WhiteBalanceBracketStep 0xD0C4
01594 #define PTP_DPC_NIKON_WhiteBalanceBracketProgram 0xD0C5
01595 #define PTP_DPC_NIKON_LensID 0xD0E0
01596 #define PTP_DPC_NIKON_LensSort 0xD0E1
01597 #define PTP_DPC_NIKON_LensType 0xD0E2
01598 #define PTP_DPC_NIKON_FocalLengthMin 0xD0E3
01599 #define PTP_DPC_NIKON_FocalLengthMax 0xD0E4
01600 #define PTP_DPC_NIKON_MaxApAtMinFocalLength 0xD0E5
01601 #define PTP_DPC_NIKON_MaxApAtMaxFocalLength 0xD0E6
01602 #define PTP_DPC_NIKON_FinderISODisp 0xD0F0
01603 #define PTP_DPC_NIKON_AutoOffPhoto 0xD0F2
01604 #define PTP_DPC_NIKON_AutoOffMenu 0xD0F3
01605 #define PTP_DPC_NIKON_AutoOffInfo 0xD0F4
01606 #define PTP_DPC_NIKON_SelfTimerShootNum 0xD0F5
01607 #define PTP_DPC_NIKON_VignetteCtrl 0xD0F7
01608 #define PTP_DPC_NIKON_AutoDistortionControl 0xD0F8
01609 #define PTP_DPC_NIKON_SceneMode 0xD0F9
01610 #define PTP_DPC_NIKON_ExposureTime 0xD100
01611 #define PTP_DPC_NIKON_ACPower 0xD101
01612 #define PTP_DPC_NIKON_WarningStatus 0xD102
01613 #define PTP_DPC_NIKON_MaximumShots 0xD103
01614 #define PTP_DPC_NIKON_AFLockStatus 0xD104
01615 #define PTP_DPC_NIKON_AELockStatus 0xD105
01616 #define PTP_DPC_NIKON_FVLockStatus 0xD106
01617 #define PTP_DPC_NIKON_AutofocusLCDTopMode2 0xD107
01618 #define PTP_DPC_NIKON_AutofocusArea 0xD108
01619 #define PTP_DPC_NIKON_FlexibleProgram 0xD109
01620 #define PTP_DPC_NIKON_LightMeter 0xD10A
01621 #define PTP_DPC_NIKON_RecordingMedia 0xD10B
01622 #define PTP_DPC_NIKON_USBSpeed 0xD10C
01623 #define PTP_DPC_NIKON_CCDNumber 0xD10D
01624 #define PTP_DPC_NIKON_CameraOrientation 0xD10E
01625 #define PTP_DPC_NIKON_GroupPtnType 0xD10F
01626 #define PTP_DPC_NIKON_FNumberLock 0xD110
01627 #define PTP_DPC_NIKON_ExposureApertureLock 0xD111
01628 #define PTP_DPC_NIKON_TVLockSetting 0xD112
01629 #define PTP_DPC_NIKON_AVLockSetting 0xD113
01630 #define PTP_DPC_NIKON_IllumSetting 0xD114
01631 #define PTP_DPC_NIKON_FocusPointBright 0xD115
01632 #define PTP_DPC_NIKON_ExternalFlashAttached 0xD120
01633 #define PTP_DPC_NIKON_ExternalFlashStatus 0xD121
01634 #define PTP_DPC_NIKON_ExternalFlashSort 0xD122
01635 #define PTP_DPC_NIKON_ExternalFlashMode 0xD123
01636 #define PTP_DPC_NIKON_ExternalFlashCompensation 0xD124
01637 #define PTP_DPC_NIKON_NewExternalFlashMode 0xD125
01638 #define PTP_DPC_NIKON_FlashExposureCompensation 0xD126
01639 #define PTP_DPC_NIKON_HDRMode 0xD130
01640 #define PTP_DPC_NIKON_HDRHighDynamic 0xD131
01641 #define PTP_DPC_NIKON_HDRSmoothing 0xD132
01642 #define PTP_DPC_NIKON_OptimizeImage 0xD140
01643 #define PTP_DPC_NIKON_Saturation 0xD142
01644 #define PTP_DPC_NIKON_BW_FillerEffect 0xD143
01645 #define PTP_DPC_NIKON_BW_Sharpness 0xD144
01646 #define PTP_DPC_NIKON_BW_Contrast 0xD145
01647 #define PTP_DPC_NIKON_BW_Setting_Type 0xD146
01648 #define PTP_DPC_NIKON_Slot2SaveMode 0xD148
01649 #define PTP_DPC_NIKON_RawBitMode 0xD149
01650 #define PTP_DPC_NIKON_ISOAutoTime 0xD14E
01651 #define PTP_DPC_NIKON_FlourescentType 0xD14F
01652 #define PTP_DPC_NIKON_TuneColourTemperature 0xD150
01653 #define PTP_DPC_NIKON_TunePreset0 0xD151
01654 #define PTP_DPC_NIKON_TunePreset1 0xD152
01655 #define PTP_DPC_NIKON_TunePreset2 0xD153
01656 #define PTP_DPC_NIKON_TunePreset3 0xD154
01657 #define PTP_DPC_NIKON_TunePreset4 0xD155
01658 #define PTP_DPC_NIKON_BeepOff 0xD160
01659 #define PTP_DPC_NIKON_AutofocusMode 0xD161
01660 #define PTP_DPC_NIKON_AFAssist 0xD163
01661 #define PTP_DPC_NIKON_PADVPMode 0xD164
01662 #define PTP_DPC_NIKON_ImageReview 0xD165
01663 #define PTP_DPC_NIKON_AFAreaIllumination 0xD166
01664 #define PTP_DPC_NIKON_FlashMode 0xD167
01665 #define PTP_DPC_NIKON_FlashCommanderMode 0xD168
01666 #define PTP_DPC_NIKON_FlashSign 0xD169
01667 #define PTP_DPC_NIKON_ISO_Auto 0xD16A
01668 #define PTP_DPC_NIKON_RemoteTimeout 0xD16B
01669 #define PTP_DPC_NIKON_GridDisplay 0xD16C
01670 #define PTP_DPC_NIKON_FlashModeManualPower 0xD16D
01671 #define PTP_DPC_NIKON_FlashModeCommanderPower 0xD16E
01672 #define PTP_DPC_NIKON_AutoFP 0xD16F
01673 #define PTP_DPC_NIKON_CSMMenu 0xD180
01674 #define PTP_DPC_NIKON_WarningDisplay 0xD181
01675 #define PTP_DPC_NIKON_BatteryCellKind 0xD182
01676 #define PTP_DPC_NIKON_ISOAutoHiLimit 0xD183
01677 #define PTP_DPC_NIKON_DynamicAFArea 0xD184
01678 #define PTP_DPC_NIKON_ContinuousSpeedHigh 0xD186
01679 #define PTP_DPC_NIKON_InfoDispSetting 0xD187
01680 #define PTP_DPC_NIKON_PreviewButton 0xD189
01681 #define PTP_DPC_NIKON_PreviewButton2 0xD18A
01682 #define PTP_DPC_NIKON_AEAFLockButton2 0xD18B
01683 #define PTP_DPC_NIKON_IndicatorDisp 0xD18D
01684 #define PTP_DPC_NIKON_CellKindPriority 0xD18E
01685 #define PTP_DPC_NIKON_BracketingFramesAndSteps 0xD190
01686 #define PTP_DPC_NIKON_LiveViewMode 0xD1A0
01687 #define PTP_DPC_NIKON_LiveViewDriveMode 0xD1A1
01688 #define PTP_DPC_NIKON_LiveViewStatus 0xD1A2
01689 #define PTP_DPC_NIKON_LiveViewImageZoomRatio 0xD1A3
01690 #define PTP_DPC_NIKON_LiveViewProhibitCondition 0xD1A4
01691 #define PTP_DPC_NIKON_ExposureDisplayStatus 0xD1B0
01692 #define PTP_DPC_NIKON_ExposureIndicateStatus 0xD1B1
01693 #define PTP_DPC_NIKON_InfoDispErrStatus 0xD1B2
01694 #define PTP_DPC_NIKON_ExposureIndicateLightup 0xD1B3
01695 #define PTP_DPC_NIKON_FlashOpen 0xD1C0
01696 #define PTP_DPC_NIKON_FlashCharged 0xD1C1
01697 #define PTP_DPC_NIKON_FlashMRepeatValue 0xD1D0
01698 #define PTP_DPC_NIKON_FlashMRepeatCount 0xD1D1
01699 #define PTP_DPC_NIKON_FlashMRepeatInterval 0xD1D2
01700 #define PTP_DPC_NIKON_FlashCommandChannel 0xD1D3
01701 #define PTP_DPC_NIKON_FlashCommandSelfMode 0xD1D4
01702 #define PTP_DPC_NIKON_FlashCommandSelfCompensation 0xD1D5
01703 #define PTP_DPC_NIKON_FlashCommandSelfValue 0xD1D6
01704 #define PTP_DPC_NIKON_FlashCommandAMode 0xD1D7
01705 #define PTP_DPC_NIKON_FlashCommandACompensation 0xD1D8
01706 #define PTP_DPC_NIKON_FlashCommandAValue 0xD1D9
01707 #define PTP_DPC_NIKON_FlashCommandBMode 0xD1DA
01708 #define PTP_DPC_NIKON_FlashCommandBCompensation 0xD1DB
01709 #define PTP_DPC_NIKON_FlashCommandBValue 0xD1DC
01710 #define PTP_DPC_NIKON_ActivePicCtrlItem 0xD200
01711 #define PTP_DPC_NIKON_ChangePicCtrlItem 0xD201
01712
01713
01714 #define PTP_DPC_FUJI_ColorTemperature 0xD017
01715 #define PTP_DPC_FUJI_Quality 0xD018
01716 #define PTP_DPC_FUJI_ReleaseMode 0xD201
01717 #define PTP_DPC_FUJI_FocusAreas 0xD206
01718 #define PTP_DPC_FUJI_AELock 0xD213
01719 #define PTP_DPC_FUJI_Aperture 0xD218
01720 #define PTP_DPC_FUJI_ShutterSpeed 0xD219
01721
01722
01723 #define PTP_DPC_MTP_SecureTime 0xD101
01724 #define PTP_DPC_MTP_DeviceCertificate 0xD102
01725 #define PTP_DPC_MTP_RevocationInfo 0xD103
01726 #define PTP_DPC_MTP_SynchronizationPartner 0xD401
01727 #define PTP_DPC_MTP_DeviceFriendlyName 0xD402
01728 #define PTP_DPC_MTP_VolumeLevel 0xD403
01729 #define PTP_DPC_MTP_DeviceIcon 0xD405
01730 #define PTP_DPC_MTP_SessionInitiatorInfo 0xD406
01731 #define PTP_DPC_MTP_PerceivedDeviceType 0xD407
01732 #define PTP_DPC_MTP_PlaybackRate 0xD410
01733 #define PTP_DPC_MTP_PlaybackObject 0xD411
01734 #define PTP_DPC_MTP_PlaybackContainerIndex 0xD412
01735 #define PTP_DPC_MTP_PlaybackPosition 0xD413
01736 #define PTP_DPC_MTP_PlaysForSureID 0xD131
01737
01738
01739 #define PTP_DPC_MTP_Zune_UnknownVersion 0xD181
01740
01741
01742 #define PTP_DPC_OLYMPUS_ResolutionMode 0xD102
01743 #define PTP_DPC_OLYMPUS_FocusPriority 0xD103
01744 #define PTP_DPC_OLYMPUS_DriveMode 0xD104
01745 #define PTP_DPC_OLYMPUS_DateTimeFormat 0xD105
01746 #define PTP_DPC_OLYMPUS_ExposureBiasStep 0xD106
01747 #define PTP_DPC_OLYMPUS_WBMode 0xD107
01748 #define PTP_DPC_OLYMPUS_OneTouchWB 0xD108
01749 #define PTP_DPC_OLYMPUS_ManualWB 0xD109
01750 #define PTP_DPC_OLYMPUS_ManualWBRBBias 0xD10A
01751 #define PTP_DPC_OLYMPUS_CustomWB 0xD10B
01752 #define PTP_DPC_OLYMPUS_CustomWBValue 0xD10C
01753 #define PTP_DPC_OLYMPUS_ExposureTimeEx 0xD10D
01754 #define PTP_DPC_OLYMPUS_BulbMode 0xD10E
01755 #define PTP_DPC_OLYMPUS_AntiMirrorMode 0xD10F
01756 #define PTP_DPC_OLYMPUS_AEBracketingFrame 0xD110
01757 #define PTP_DPC_OLYMPUS_AEBracketingStep 0xD111
01758 #define PTP_DPC_OLYMPUS_WBBracketingFrame 0xD112
01759 #define PTP_DPC_OLYMPUS_WBBracketingRBFrame 0xD112
01760 #define PTP_DPC_OLYMPUS_WBBracketingRBRange 0xD113
01761 #define PTP_DPC_OLYMPUS_WBBracketingGMFrame 0xD114
01762 #define PTP_DPC_OLYMPUS_WBBracketingGMRange 0xD115
01763 #define PTP_DPC_OLYMPUS_FLBracketingFrame 0xD118
01764 #define PTP_DPC_OLYMPUS_FLBracketingStep 0xD119
01765 #define PTP_DPC_OLYMPUS_FlashBiasCompensation 0xD11A
01766 #define PTP_DPC_OLYMPUS_ManualFocusMode 0xD11B
01767 #define PTP_DPC_OLYMPUS_RawSaveMode 0xD11D
01768 #define PTP_DPC_OLYMPUS_AUXLightMode 0xD11E
01769 #define PTP_DPC_OLYMPUS_LensSinkMode 0xD11F
01770 #define PTP_DPC_OLYMPUS_BeepStatus 0xD120
01771 #define PTP_DPC_OLYMPUS_ColorSpace 0xD122
01772 #define PTP_DPC_OLYMPUS_ColorMatching 0xD123
01773 #define PTP_DPC_OLYMPUS_Saturation 0xD124
01774 #define PTP_DPC_OLYMPUS_NoiseReductionPattern 0xD126
01775 #define PTP_DPC_OLYMPUS_NoiseReductionRandom 0xD127
01776 #define PTP_DPC_OLYMPUS_ShadingMode 0xD129
01777 #define PTP_DPC_OLYMPUS_ISOBoostMode 0xD12A
01778 #define PTP_DPC_OLYMPUS_ExposureIndexBiasStep 0xD12B
01779 #define PTP_DPC_OLYMPUS_FilterEffect 0xD12C
01780 #define PTP_DPC_OLYMPUS_ColorTune 0xD12D
01781 #define PTP_DPC_OLYMPUS_Language 0xD12E
01782 #define PTP_DPC_OLYMPUS_LanguageCode 0xD12F
01783 #define PTP_DPC_OLYMPUS_RecviewMode 0xD130
01784 #define PTP_DPC_OLYMPUS_SleepTime 0xD131
01785 #define PTP_DPC_OLYMPUS_ManualWBGMBias 0xD132
01786 #define PTP_DPC_OLYMPUS_AELAFLMode 0xD135
01787 #define PTP_DPC_OLYMPUS_AELButtonStatus 0xD136
01788 #define PTP_DPC_OLYMPUS_CompressionSettingEx 0xD137
01789 #define PTP_DPC_OLYMPUS_ToneMode 0xD139
01790 #define PTP_DPC_OLYMPUS_GradationMode 0xD13A
01791 #define PTP_DPC_OLYMPUS_DevelopMode 0xD13B
01792 #define PTP_DPC_OLYMPUS_ExtendInnerFlashMode 0xD13C
01793 #define PTP_DPC_OLYMPUS_OutputDeviceMode 0xD13D
01794 #define PTP_DPC_OLYMPUS_LiveViewMode 0xD13E
01795 #define PTP_DPC_OLYMPUS_LCDBacklight 0xD140
01796 #define PTP_DPC_OLYMPUS_CustomDevelop 0xD141
01797 #define PTP_DPC_OLYMPUS_GradationAutoBias 0xD142
01798 #define PTP_DPC_OLYMPUS_FlashRCMode 0xD143
01799 #define PTP_DPC_OLYMPUS_FlashRCGroupValue 0xD144
01800 #define PTP_DPC_OLYMPUS_FlashRCChannelValue 0xD145
01801 #define PTP_DPC_OLYMPUS_FlashRCFPMode 0xD146
01802 #define PTP_DPC_OLYMPUS_FlashRCPhotoChromicMode 0xD147
01803 #define PTP_DPC_OLYMPUS_FlashRCPhotoChromicBias 0xD148
01804 #define PTP_DPC_OLYMPUS_FlashRCPhotoChromicManualBias 0xD149
01805 #define PTP_DPC_OLYMPUS_FlashRCQuantityLightLevel 0xD14A
01806 #define PTP_DPC_OLYMPUS_FocusMeteringValue 0xD14B
01807 #define PTP_DPC_OLYMPUS_ISOBracketingFrame 0xD14C
01808 #define PTP_DPC_OLYMPUS_ISOBracketingStep 0xD14D
01809 #define PTP_DPC_OLYMPUS_BulbMFMode 0xD14E
01810 #define PTP_DPC_OLYMPUS_BurstFPSValue 0xD14F
01811 #define PTP_DPC_OLYMPUS_ISOAutoBaseValue 0xD150
01812 #define PTP_DPC_OLYMPUS_ISOAutoMaxValue 0xD151
01813 #define PTP_DPC_OLYMPUS_BulbLimiterValue 0xD152
01814 #define PTP_DPC_OLYMPUS_DPIMode 0xD153
01815 #define PTP_DPC_OLYMPUS_DPICustomValue 0xD154
01816 #define PTP_DPC_OLYMPUS_ResolutionValueSetting 0xD155
01817 #define PTP_DPC_OLYMPUS_AFTargetSize 0xD157
01818 #define PTP_DPC_OLYMPUS_LightSensorMode 0xD158
01819 #define PTP_DPC_OLYMPUS_AEBracket 0xD159
01820 #define PTP_DPC_OLYMPUS_WBRBBracket 0xD15A
01821 #define PTP_DPC_OLYMPUS_WBGMBracket 0xD15B
01822 #define PTP_DPC_OLYMPUS_FlashBracket 0xD15C
01823 #define PTP_DPC_OLYMPUS_ISOBracket 0xD15D
01824 #define PTP_DPC_OLYMPUS_MyModeStatus 0xD15E
01825
01826
01827 #define PTP_DPC_CASIO_MONITOR 0xD001
01828 #define PTP_DPC_CASIO_STORAGE 0xD002 //Not reported by DeviceInfo?
01829 #define PTP_DPC_CASIO_UNKNOWN_1 0xD004
01830 #define PTP_DPC_CASIO_UNKNOWN_2 0xD005
01831 #define PTP_DPC_CASIO_UNKNOWN_3 0xD007
01832 #define PTP_DPC_CASIO_RECORD_LIGHT 0xD008
01833 #define PTP_DPC_CASIO_UNKNOWN_4 0xD009
01834 #define PTP_DPC_CASIO_UNKNOWN_5 0xD00A
01835 #define PTP_DPC_CASIO_MOVIE_MODE 0xD00B
01836 #define PTP_DPC_CASIO_HD_SETTING 0xD00C
01837 #define PTP_DPC_CASIO_HS_SETTING 0xD00D
01838 #define PTP_DPC_CASIO_CS_HIGH_SPEED 0xD00F
01839 #define PTP_DPC_CASIO_CS_UPPER_LIMIT 0xD010
01840 #define PTP_DPC_CASIO_CS_SHOT 0xD011
01841 #define PTP_DPC_CASIO_UNKNOWN_6 0xD012
01842 #define PTP_DPC_CASIO_UNKNOWN_7 0xD013
01843 #define PTP_DPC_CASIO_UNKNOWN_8 0xD015
01844 #define PTP_DPC_CASIO_UNKNOWN_9 0xD017
01845 #define PTP_DPC_CASIO_UNKNOWN_10 0xD018
01846 #define PTP_DPC_CASIO_UNKNOWN_11 0xD019
01847 #define PTP_DPC_CASIO_UNKNOWN_12 0xD01A
01848 #define PTP_DPC_CASIO_UNKNOWN_13 0xD01B
01849 #define PTP_DPC_CASIO_UNKNOWN_14 0xD01C
01850 #define PTP_DPC_CASIO_UNKNOWN_15 0xD01D
01851 #define PTP_DPC_CASIO_UNKNOWN_16 0xD020
01852 #define PTP_DPC_CASIO_UNKNOWN_17 0xD030
01853 #define PTP_DPC_CASIO_UNKNOWN_18 0xD080
01854
01855
01856 #define PTP_OPC_StorageID 0xDC01
01857 #define PTP_OPC_ObjectFormat 0xDC02
01858 #define PTP_OPC_ProtectionStatus 0xDC03
01859 #define PTP_OPC_ObjectSize 0xDC04
01860 #define PTP_OPC_AssociationType 0xDC05
01861 #define PTP_OPC_AssociationDesc 0xDC06
01862 #define PTP_OPC_ObjectFileName 0xDC07
01863 #define PTP_OPC_DateCreated 0xDC08
01864 #define PTP_OPC_DateModified 0xDC09
01865 #define PTP_OPC_Keywords 0xDC0A
01866 #define PTP_OPC_ParentObject 0xDC0B
01867 #define PTP_OPC_AllowedFolderContents 0xDC0C
01868 #define PTP_OPC_Hidden 0xDC0D
01869 #define PTP_OPC_SystemObject 0xDC0E
01870 #define PTP_OPC_PersistantUniqueObjectIdentifier 0xDC41
01871 #define PTP_OPC_SyncID 0xDC42
01872 #define PTP_OPC_PropertyBag 0xDC43
01873 #define PTP_OPC_Name 0xDC44
01874 #define PTP_OPC_CreatedBy 0xDC45
01875 #define PTP_OPC_Artist 0xDC46
01876 #define PTP_OPC_DateAuthored 0xDC47
01877 #define PTP_OPC_Description 0xDC48
01878 #define PTP_OPC_URLReference 0xDC49
01879 #define PTP_OPC_LanguageLocale 0xDC4A
01880 #define PTP_OPC_CopyrightInformation 0xDC4B
01881 #define PTP_OPC_Source 0xDC4C
01882 #define PTP_OPC_OriginLocation 0xDC4D
01883 #define PTP_OPC_DateAdded 0xDC4E
01884 #define PTP_OPC_NonConsumable 0xDC4F
01885 #define PTP_OPC_CorruptOrUnplayable 0xDC50
01886 #define PTP_OPC_ProducerSerialNumber 0xDC51
01887 #define PTP_OPC_RepresentativeSampleFormat 0xDC81
01888 #define PTP_OPC_RepresentativeSampleSize 0xDC82
01889 #define PTP_OPC_RepresentativeSampleHeight 0xDC83
01890 #define PTP_OPC_RepresentativeSampleWidth 0xDC84
01891 #define PTP_OPC_RepresentativeSampleDuration 0xDC85
01892 #define PTP_OPC_RepresentativeSampleData 0xDC86
01893 #define PTP_OPC_Width 0xDC87
01894 #define PTP_OPC_Height 0xDC88
01895 #define PTP_OPC_Duration 0xDC89
01896 #define PTP_OPC_Rating 0xDC8A
01897 #define PTP_OPC_Track 0xDC8B
01898 #define PTP_OPC_Genre 0xDC8C
01899 #define PTP_OPC_Credits 0xDC8D
01900 #define PTP_OPC_Lyrics 0xDC8E
01901 #define PTP_OPC_SubscriptionContentID 0xDC8F
01902 #define PTP_OPC_ProducedBy 0xDC90
01903 #define PTP_OPC_UseCount 0xDC91
01904 #define PTP_OPC_SkipCount 0xDC92
01905 #define PTP_OPC_LastAccessed 0xDC93
01906 #define PTP_OPC_ParentalRating 0xDC94
01907 #define PTP_OPC_MetaGenre 0xDC95
01908 #define PTP_OPC_Composer 0xDC96
01909 #define PTP_OPC_EffectiveRating 0xDC97
01910 #define PTP_OPC_Subtitle 0xDC98
01911 #define PTP_OPC_OriginalReleaseDate 0xDC99
01912 #define PTP_OPC_AlbumName 0xDC9A
01913 #define PTP_OPC_AlbumArtist 0xDC9B
01914 #define PTP_OPC_Mood 0xDC9C
01915 #define PTP_OPC_DRMStatus 0xDC9D
01916 #define PTP_OPC_SubDescription 0xDC9E
01917 #define PTP_OPC_IsCropped 0xDCD1
01918 #define PTP_OPC_IsColorCorrected 0xDCD2
01919 #define PTP_OPC_ImageBitDepth 0xDCD3
01920 #define PTP_OPC_Fnumber 0xDCD4
01921 #define PTP_OPC_ExposureTime 0xDCD5
01922 #define PTP_OPC_ExposureIndex 0xDCD6
01923 #define PTP_OPC_DisplayName 0xDCE0
01924 #define PTP_OPC_BodyText 0xDCE1
01925 #define PTP_OPC_Subject 0xDCE2
01926 #define PTP_OPC_Priority 0xDCE3
01927 #define PTP_OPC_GivenName 0xDD00
01928 #define PTP_OPC_MiddleNames 0xDD01
01929 #define PTP_OPC_FamilyName 0xDD02
01930 #define PTP_OPC_Prefix 0xDD03
01931 #define PTP_OPC_Suffix 0xDD04
01932 #define PTP_OPC_PhoneticGivenName 0xDD05
01933 #define PTP_OPC_PhoneticFamilyName 0xDD06
01934 #define PTP_OPC_EmailPrimary 0xDD07
01935 #define PTP_OPC_EmailPersonal1 0xDD08
01936 #define PTP_OPC_EmailPersonal2 0xDD09
01937 #define PTP_OPC_EmailBusiness1 0xDD0A
01938 #define PTP_OPC_EmailBusiness2 0xDD0B
01939 #define PTP_OPC_EmailOthers 0xDD0C
01940 #define PTP_OPC_PhoneNumberPrimary 0xDD0D
01941 #define PTP_OPC_PhoneNumberPersonal 0xDD0E
01942 #define PTP_OPC_PhoneNumberPersonal2 0xDD0F
01943 #define PTP_OPC_PhoneNumberBusiness 0xDD10
01944 #define PTP_OPC_PhoneNumberBusiness2 0xDD11
01945 #define PTP_OPC_PhoneNumberMobile 0xDD12
01946 #define PTP_OPC_PhoneNumberMobile2 0xDD13
01947 #define PTP_OPC_FaxNumberPrimary 0xDD14
01948 #define PTP_OPC_FaxNumberPersonal 0xDD15
01949 #define PTP_OPC_FaxNumberBusiness 0xDD16
01950 #define PTP_OPC_PagerNumber 0xDD17
01951 #define PTP_OPC_PhoneNumberOthers 0xDD18
01952 #define PTP_OPC_PrimaryWebAddress 0xDD19
01953 #define PTP_OPC_PersonalWebAddress 0xDD1A
01954 #define PTP_OPC_BusinessWebAddress 0xDD1B
01955 #define PTP_OPC_InstantMessengerAddress 0xDD1C
01956 #define PTP_OPC_InstantMessengerAddress2 0xDD1D
01957 #define PTP_OPC_InstantMessengerAddress3 0xDD1E
01958 #define PTP_OPC_PostalAddressPersonalFull 0xDD1F
01959 #define PTP_OPC_PostalAddressPersonalFullLine1 0xDD20
01960 #define PTP_OPC_PostalAddressPersonalFullLine2 0xDD21
01961 #define PTP_OPC_PostalAddressPersonalFullCity 0xDD22
01962 #define PTP_OPC_PostalAddressPersonalFullRegion 0xDD23
01963 #define PTP_OPC_PostalAddressPersonalFullPostalCode 0xDD24
01964 #define PTP_OPC_PostalAddressPersonalFullCountry 0xDD25
01965 #define PTP_OPC_PostalAddressBusinessFull 0xDD26
01966 #define PTP_OPC_PostalAddressBusinessLine1 0xDD27
01967 #define PTP_OPC_PostalAddressBusinessLine2 0xDD28
01968 #define PTP_OPC_PostalAddressBusinessCity 0xDD29
01969 #define PTP_OPC_PostalAddressBusinessRegion 0xDD2A
01970 #define PTP_OPC_PostalAddressBusinessPostalCode 0xDD2B
01971 #define PTP_OPC_PostalAddressBusinessCountry 0xDD2C
01972 #define PTP_OPC_PostalAddressOtherFull 0xDD2D
01973 #define PTP_OPC_PostalAddressOtherLine1 0xDD2E
01974 #define PTP_OPC_PostalAddressOtherLine2 0xDD2F
01975 #define PTP_OPC_PostalAddressOtherCity 0xDD30
01976 #define PTP_OPC_PostalAddressOtherRegion 0xDD31
01977 #define PTP_OPC_PostalAddressOtherPostalCode 0xDD32
01978 #define PTP_OPC_PostalAddressOtherCountry 0xDD33
01979 #define PTP_OPC_OrganizationName 0xDD34
01980 #define PTP_OPC_PhoneticOrganizationName 0xDD35
01981 #define PTP_OPC_Role 0xDD36
01982 #define PTP_OPC_Birthdate 0xDD37
01983 #define PTP_OPC_MessageTo 0xDD40
01984 #define PTP_OPC_MessageCC 0xDD41
01985 #define PTP_OPC_MessageBCC 0xDD42
01986 #define PTP_OPC_MessageRead 0xDD43
01987 #define PTP_OPC_MessageReceivedTime 0xDD44
01988 #define PTP_OPC_MessageSender 0xDD45
01989 #define PTP_OPC_ActivityBeginTime 0xDD50
01990 #define PTP_OPC_ActivityEndTime 0xDD51
01991 #define PTP_OPC_ActivityLocation 0xDD52
01992 #define PTP_OPC_ActivityRequiredAttendees 0xDD54
01993 #define PTP_OPC_ActivityOptionalAttendees 0xDD55
01994 #define PTP_OPC_ActivityResources 0xDD56
01995 #define PTP_OPC_ActivityAccepted 0xDD57
01996 #define PTP_OPC_Owner 0xDD5D
01997 #define PTP_OPC_Editor 0xDD5E
01998 #define PTP_OPC_Webmaster 0xDD5F
01999 #define PTP_OPC_URLSource 0xDD60
02000 #define PTP_OPC_URLDestination 0xDD61
02001 #define PTP_OPC_TimeBookmark 0xDD62
02002 #define PTP_OPC_ObjectBookmark 0xDD63
02003 #define PTP_OPC_ByteBookmark 0xDD64
02004 #define PTP_OPC_LastBuildDate 0xDD70
02005 #define PTP_OPC_TimetoLive 0xDD71
02006 #define PTP_OPC_MediaGUID 0xDD72
02007 #define PTP_OPC_TotalBitRate 0xDE91
02008 #define PTP_OPC_BitRateType 0xDE92
02009 #define PTP_OPC_SampleRate 0xDE93
02010 #define PTP_OPC_NumberOfChannels 0xDE94
02011 #define PTP_OPC_AudioBitDepth 0xDE95
02012 #define PTP_OPC_ScanDepth 0xDE97
02013 #define PTP_OPC_AudioWAVECodec 0xDE99
02014 #define PTP_OPC_AudioBitRate 0xDE9A
02015 #define PTP_OPC_VideoFourCCCodec 0xDE9B
02016 #define PTP_OPC_VideoBitRate 0xDE9C
02017 #define PTP_OPC_FramesPerThousandSeconds 0xDE9D
02018 #define PTP_OPC_KeyFrameDistance 0xDE9E
02019 #define PTP_OPC_BufferSize 0xDE9F
02020 #define PTP_OPC_EncodingQuality 0xDEA0
02021 #define PTP_OPC_EncodingProfile 0xDEA1
02022 #define PTP_OPC_BuyFlag 0xD901
02023
02024
02025 #define PTP_OPC_WirelessConfigurationFile 0xB104
02026
02027
02028
02029 #define PTP_DPFF_None 0x00
02030 #define PTP_DPFF_Range 0x01
02031 #define PTP_DPFF_Enumeration 0x02
02032
02033
02034 #define PTP_OPFF_None 0x00
02035 #define PTP_OPFF_Range 0x01
02036 #define PTP_OPFF_Enumeration 0x02
02037 #define PTP_OPFF_DateTime 0x03
02038 #define PTP_OPFF_FixedLengthArray 0x04
02039 #define PTP_OPFF_RegularExpression 0x05
02040 #define PTP_OPFF_ByteArray 0x06
02041 #define PTP_OPFF_LongString 0xFF
02042
02043
02044 #define PTP_DPGS_Get 0x00
02045 #define PTP_DPGS_GetSet 0x01
02046
02047
02048
02049 typedef struct _PTPParams PTPParams;
02050
02051
02052 typedef uint16_t (* PTPDataGetFunc) (PTPParams* params, void*priv,
02053 unsigned long wantlen,
02054 unsigned char *data, unsigned long *gotlen);
02055
02056 typedef uint16_t (* PTPDataPutFunc) (PTPParams* params, void*priv,
02057 unsigned long sendlen,
02058 unsigned char *data, unsigned long *putlen);
02059 typedef struct _PTPDataHandler {
02060 PTPDataGetFunc getfunc;
02061 PTPDataPutFunc putfunc;
02062 void *priv;
02063 } PTPDataHandler;
02064
02065
02066
02067
02068
02069 typedef uint16_t (* PTPIOSendReq) (PTPParams* params, PTPContainer* req);
02070 typedef uint16_t (* PTPIOSendData) (PTPParams* params, PTPContainer* ptp,
02071 unsigned long size, PTPDataHandler*getter);
02072
02073 typedef uint16_t (* PTPIOGetResp) (PTPParams* params, PTPContainer* resp);
02074 typedef uint16_t (* PTPIOGetData) (PTPParams* params, PTPContainer* ptp,
02075 PTPDataHandler *putter);
02076 typedef uint16_t (* PTPIOCancelReq) (PTPParams* params, uint32_t transaction_id);
02077
02078
02079 typedef void (* PTPErrorFunc) (void *data, const char *format, va_list args)
02080 #if (__GNUC__ >= 3)
02081 __attribute__((__format__(printf,2,0)))
02082 #endif
02083 ;
02084 typedef void (* PTPDebugFunc) (void *data, const char *format, va_list args)
02085 #if (__GNUC__ >= 3)
02086 __attribute__((__format__(printf,2,0)))
02087 #endif
02088 ;
02089
02090 struct _PTPObject {
02091 uint32_t oid;
02092 unsigned int flags;
02093 #define PTPOBJECT_OBJECTINFO_LOADED (1<<0)
02094 #define PTPOBJECT_CANONFLAGS_LOADED (1<<1)
02095 #define PTPOBJECT_MTPPROPLIST_LOADED (1<<2)
02096 #define PTPOBJECT_DIRECTORY_LOADED (1<<3)
02097 #define PTPOBJECT_PARENTOBJECT_LOADED (1<<4)
02098 #define PTPOBJECT_STORAGEID_LOADED (1<<5)
02099
02100 PTPObjectInfo oi;
02101 uint32_t canon_flags;
02102 MTPProperties *mtpprops;
02103 int nrofmtpprops;
02104 };
02105 typedef struct _PTPObject PTPObject;
02106
02107 struct _PTPParams {
02108
02109 uint32_t device_flags;
02110
02111
02112 uint8_t byteorder;
02113 uint16_t maxpacketsize;
02114
02115
02116 PTPIOSendReq sendreq_func;
02117 PTPIOSendData senddata_func;
02118 PTPIOGetResp getresp_func;
02119 PTPIOGetData getdata_func;
02120 PTPIOGetResp event_check;
02121 PTPIOGetResp event_wait;
02122 PTPIOCancelReq cancelreq_func;
02123
02124
02125 PTPErrorFunc error_func;
02126 PTPDebugFunc debug_func;
02127
02128
02129 void *data;
02130
02131
02132 uint32_t transaction_id;
02133
02134 uint32_t session_id;
02135
02136
02137 int split_header_data;
02138 int ocs64;
02139
02140
02141 PTPObject *objects;
02142 int nrofobjects;
02143
02144 PTPDeviceInfo deviceinfo;
02145
02146
02147 PTPContainer *events;
02148 int nrofevents;
02149
02150
02151 PTPCanon_Property *canon_props;
02152 int nrofcanon_props;
02153 int canon_viewfinder_on;
02154 int canon_event_mode;
02155
02156
02157 PTPCanon_changes_entry *backlogentries;
02158 int nrofbacklogentries;
02159 int eos_captureenabled;
02160 int eos_viewfinderenabled;
02161 int eos_camerastatus;
02162
02163
02164 uint8_t wifi_profiles_version;
02165 uint8_t wifi_profiles_number;
02166 PTPNIKONWifiProfile *wifi_profiles;
02167
02168
02169 int cmdfd, evtfd;
02170 uint8_t cameraguid[16];
02171 uint32_t eventpipeid;
02172 char *cameraname;
02173
02174
02175 PTPDeviceInfo outer_deviceinfo;
02176 char *olympus_cmd;
02177 char *olympus_reply;
02178
02179 #ifdef HAVE_ICONV
02180
02181 iconv_t cd_locale_to_ucs2;
02182 iconv_t cd_ucs2_to_locale;
02183 #endif
02184
02185
02186
02187
02188 uint8_t *response_packet;
02189 uint16_t response_packet_size;
02190 };
02191
02192
02193 uint16_t ptp_usb_sendreq (PTPParams* params, PTPContainer* req);
02194 uint16_t ptp_usb_senddata (PTPParams* params, PTPContainer* ptp,
02195 unsigned long size, PTPDataHandler *handler);
02196 uint16_t ptp_usb_getresp (PTPParams* params, PTPContainer* resp);
02197 uint16_t ptp_usb_getdata (PTPParams* params, PTPContainer* ptp,
02198 PTPDataHandler *handler);
02199 uint16_t ptp_usb_event_check (PTPParams* params, PTPContainer* event);
02200 uint16_t ptp_usb_event_wait (PTPParams* params, PTPContainer* event);
02201
02202 uint16_t ptp_usb_control_get_extended_event_data (PTPParams *params, char *buffer, int *size);
02203 uint16_t ptp_usb_control_device_reset_request (PTPParams *params);
02204 uint16_t ptp_usb_control_get_device_status (PTPParams *params, char *buffer, int *size);
02205 uint16_t ptp_usb_control_cancel_request (PTPParams *params, uint32_t transid);
02206
02207
02208 int ptp_ptpip_connect (PTPParams* params, const char *port);
02209 uint16_t ptp_ptpip_sendreq (PTPParams* params, PTPContainer* req);
02210 uint16_t ptp_ptpip_senddata (PTPParams* params, PTPContainer* ptp,
02211 unsigned long size, PTPDataHandler *handler);
02212 uint16_t ptp_ptpip_getresp (PTPParams* params, PTPContainer* resp);
02213 uint16_t ptp_ptpip_getdata (PTPParams* params, PTPContainer* ptp,
02214 PTPDataHandler *handler);
02215 uint16_t ptp_ptpip_event_wait (PTPParams* params, PTPContainer* event);
02216 uint16_t ptp_ptpip_event_check (PTPParams* params, PTPContainer* event);
02217
02218 uint16_t ptp_getdeviceinfo (PTPParams* params, PTPDeviceInfo* deviceinfo);
02219
02220 uint16_t ptp_generic_no_data (PTPParams* params, uint16_t opcode, unsigned int cnt, ...);
02221
02222 uint16_t ptp_opensession (PTPParams *params, uint32_t session);
02223
02232 #define ptp_closesession(params) ptp_generic_no_data(params,PTP_OC_CloseSession,0)
02233
02242 #define ptp_resetdevice(params) ptp_generic_no_data(params,PTP_OC_ResetDevice,0)
02243
02244 uint16_t ptp_getstorageids (PTPParams* params, PTPStorageIDs* storageids);
02245 uint16_t ptp_getstorageinfo (PTPParams* params, uint32_t storageid,
02246 PTPStorageInfo* storageinfo);
02256 #define ptp_formatstore(params,storageid) ptp_generic_no_data(params,PTP_OC_FormatStore,1,storageid)
02257
02258 uint16_t ptp_getobjecthandles (PTPParams* params, uint32_t storage,
02259 uint32_t objectformatcode,
02260 uint32_t associationOH,
02261 PTPObjectHandles* objecthandles);
02262
02263
02264 uint16_t ptp_getnumobjects (PTPParams* params, uint32_t storage,
02265 uint32_t objectformatcode,
02266 uint32_t associationOH,
02267 uint32_t* numobs);
02268
02269 uint16_t ptp_getobjectinfo (PTPParams *params, uint32_t handle,
02270 PTPObjectInfo* objectinfo);
02271
02272 uint16_t ptp_getobject (PTPParams *params, uint32_t handle,
02273 unsigned char** object);
02274 uint16_t ptp_getobject_tofd (PTPParams* params, uint32_t handle, int fd);
02275 uint16_t ptp_getobject_to_handler (PTPParams* params, uint32_t handle, PTPDataHandler*);
02276 uint16_t ptp_getpartialobject (PTPParams* params, uint32_t handle, uint32_t offset,
02277 uint32_t maxbytes, unsigned char** object,
02278 uint32_t *len);
02279 uint16_t ptp_getthumb (PTPParams *params, uint32_t handle,
02280 unsigned char** object, unsigned int *len);
02281
02282 uint16_t ptp_deleteobject (PTPParams* params, uint32_t handle,
02283 uint32_t ofc);
02284
02285 uint16_t ptp_sendobjectinfo (PTPParams* params, uint32_t* store,
02286 uint32_t* parenthandle, uint32_t* handle,
02287 PTPObjectInfo* objectinfo);
02298 #define ptp_setobjectprotection(params,oid,newprot) ptp_generic_no_data(params,PTP_OC_SetObjectProtection,2,oid,newprot)
02299 uint16_t ptp_sendobject (PTPParams* params, unsigned char* object,
02300 uint32_t size);
02301 uint16_t ptp_sendobject_fromfd (PTPParams* params, int fd, uint32_t size);
02302 uint16_t ptp_sendobject_from_handler (PTPParams* params, PTPDataHandler*, uint32_t size);
02317 #define ptp_initiatecapture(params,storageid,ofc) ptp_generic_no_data(params,PTP_OC_InitiateCapture,2,storageid,ofc)
02318
02319 uint16_t ptp_getdevicepropdesc (PTPParams* params, uint16_t propcode,
02320 PTPDevicePropDesc *devicepropertydesc);
02321 uint16_t ptp_getdevicepropvalue (PTPParams* params, uint16_t propcode,
02322 PTPPropertyValue* value, uint16_t datatype);
02323 uint16_t ptp_setdevicepropvalue (PTPParams* params, uint16_t propcode,
02324 PTPPropertyValue* value, uint16_t datatype);
02325 uint16_t ptp_getfilesystemmanifest (PTPParams* params, uint32_t storage,
02326 uint32_t objectformatcode, uint32_t associationOH,
02327 unsigned char** data);
02328
02329
02330
02331 uint16_t ptp_check_event (PTPParams *params);
02332 int ptp_get_one_event (PTPParams *params, PTPContainer *evt);
02333 uint16_t ptp_check_eos_events (PTPParams *params);
02334 int ptp_get_one_eos_event (PTPParams *params, PTPCanon_changes_entry *entry);
02335
02336
02337
02338 uint16_t ptp_mtp_getobjectpropdesc (PTPParams* params, uint16_t opc, uint16_t ofc,
02339 PTPObjectPropDesc *objectpropertydesc);
02340 uint16_t ptp_mtp_getobjectpropvalue (PTPParams* params, uint32_t oid, uint16_t opc,
02341 PTPPropertyValue *value, uint16_t datatype);
02342 uint16_t ptp_mtp_setobjectpropvalue (PTPParams* params, uint32_t oid, uint16_t opc,
02343 PTPPropertyValue *value, uint16_t datatype);
02344 uint16_t ptp_mtp_getobjectreferences (PTPParams* params, uint32_t handle, uint32_t** ohArray, uint32_t* arraylen);
02345 uint16_t ptp_mtp_setobjectreferences (PTPParams* params, uint32_t handle, uint32_t* ohArray, uint32_t arraylen);
02346 uint16_t ptp_mtp_getobjectproplist (PTPParams* params, uint32_t handle, MTPProperties **props, int *nrofprops);
02347 uint16_t ptp_mtp_getobjectproplist_single (PTPParams* params, uint32_t handle, MTPProperties **props, int *nrofprops);
02348 uint16_t ptp_mtp_sendobjectproplist (PTPParams* params, uint32_t* store, uint32_t* parenthandle, uint32_t* handle,
02349 uint16_t objecttype, uint64_t objectsize, MTPProperties *props, int nrofprops);
02350 uint16_t ptp_mtp_setobjectproplist (PTPParams* params, MTPProperties *props, int nrofprops);
02351
02352
02353 uint16_t ptp_mtpz_sendwmdrmpdapprequest (PTPParams*, unsigned char *, uint32_t);
02354 #define ptp_mtpz_resethandshake(params) ptp_generic_no_data(params, PTP_OC_MTP_WMDRMPD_EndTrustedAppSession, 0)
02355 uint16_t ptp_mtpz_getwmdrmpdappresponse (PTPParams*, unsigned char **, uint32_t*);
02356 #define ptp_mtpz_wmdrmpd_enabletrustedfilesoperations(params,hash1,hash2,hash3,hash4) \
02357 ptp_generic_no_data(params, PTP_OC_MTP_WMDRMPD_EnableTrustedFilesOperations, 4,\
02358 hash1, hash2, hash3, hash4)
02359
02360
02361 uint16_t ptp_ek_9007 (PTPParams* params, unsigned char **serial, unsigned int *size);
02362 uint16_t ptp_ek_9009 (PTPParams* params, uint32_t*, uint32_t*);
02363 uint16_t ptp_ek_900c (PTPParams* params, unsigned char **serial, unsigned int *size);
02364 uint16_t ptp_ek_getserial (PTPParams* params, unsigned char **serial, unsigned int *size);
02365 uint16_t ptp_ek_setserial (PTPParams* params, unsigned char *serial, unsigned int size);
02366 uint16_t ptp_ek_settext (PTPParams* params, PTPEKTextParams *text);
02367 uint16_t ptp_ek_sendfileobjectinfo (PTPParams* params, uint32_t* store,
02368 uint32_t* parenthandle, uint32_t* handle,
02369 PTPObjectInfo* objectinfo);
02370 uint16_t ptp_ek_sendfileobject (PTPParams* params, unsigned char* object,
02371 uint32_t size);
02372 uint16_t ptp_ek_sendfileobject_from_handler (PTPParams* params, PTPDataHandler*,
02373 uint32_t size);
02374
02375
02376 #define ptp_canon_9012(params) ptp_generic_no_data(params,0x9012,0)
02377 uint16_t ptp_canon_gettreeinfo (PTPParams* params, uint32_t* out);
02378 uint16_t ptp_canon_gettreesize (PTPParams* params, PTPCanon_directtransfer_entry**, unsigned int*cnt);
02379 uint16_t ptp_canon_getpartialobjectinfo (PTPParams* params, uint32_t handle,
02380 uint32_t p2, uint32_t* size, uint32_t* rp2);
02381
02382 uint16_t ptp_canon_get_mac_address (PTPParams* params, unsigned char **mac);
02395 #define ptp_canon_startshootingmode(params) ptp_generic_no_data(params,PTP_OC_CANON_InitiateReleaseControl,0)
02396
02409 #define ptp_canon_endshootingmode(params) ptp_generic_no_data(params,PTP_OC_CANON_TerminateReleaseControl,0)
02410
02421 #define ptp_canon_viewfinderon(params) ptp_generic_no_data(params,PTP_OC_CANON_ViewfinderOn,0)
02422
02434 #define ptp_canon_viewfinderoff(params) ptp_generic_no_data(params,PTP_OC_CANON_ViewfinderOff,0)
02435
02447 #define PTP_CANON_RESET_AE 0x1
02448 #define PTP_CANON_RESET_AF 0x2
02449 #define PTP_CANON_RESET_AWB 0x4
02450 #define ptp_canon_reset_aeafawb(params,flags) ptp_generic_no_data(params,PTP_OC_CANON_DoAeAfAwb,1,flags)
02451 uint16_t ptp_canon_checkevent (PTPParams* params,
02452 PTPContainer* event, int* isevent);
02465 #define ptp_canon_focuslock(params) ptp_generic_no_data(params,PTP_OC_CANON_FocusLock,0)
02466
02478 #define ptp_canon_focusunlock(params) ptp_generic_no_data(params,PTP_OC_CANON_FocusUnlock,0)
02479
02489 #define ptp_canon_keepdeviceon(params) ptp_generic_no_data(params,PTP_OC_CANON_KeepDeviceOn,0)
02490
02500 #define ptp_canon_eos_keepdeviceon(params) ptp_generic_no_data(params,PTP_OC_CANON_EOS_KeepDeviceOn,0)
02501
02518 #define ptp_canon_initiatecaptureinmemory(params) ptp_generic_no_data(params,PTP_OC_CANON_InitiateCaptureInMemory,0)
02519
02529 #define ptp_canon_eos_requestdevicepropvalue(params,prop) ptp_generic_no_data(params,PTP_OC_CANON_EOS_RequestDevicePropValue,1,prop)
02530 uint16_t ptp_canon_eos_capture (PTPParams* params, uint32_t *result);
02531 uint16_t ptp_canon_eos_getevent (PTPParams* params, PTPCanon_changes_entry **entries, int *nrofentries);
02532 uint16_t ptp_canon_getpartialobject (PTPParams* params, uint32_t handle,
02533 uint32_t offset, uint32_t size,
02534 uint32_t pos, unsigned char** block,
02535 uint32_t* readnum);
02536 uint16_t ptp_canon_getviewfinderimage (PTPParams* params, unsigned char** image,
02537 uint32_t* size);
02538 uint16_t ptp_canon_getchanges (PTPParams* params, uint16_t** props,
02539 uint32_t* propnum);
02540 uint16_t ptp_canon_getobjectinfo (PTPParams* params, uint32_t store,
02541 uint32_t p2, uint32_t parenthandle,
02542 uint32_t handle,
02543 PTPCANONFolderEntry** entries,
02544 uint32_t* entnum);
02545 uint16_t ptp_canon_eos_getdeviceinfo (PTPParams* params, PTPCanonEOSDeviceInfo*di);
02556 #define ptp_canon_eos_setuilock(params) ptp_generic_no_data(params,PTP_OC_CANON_EOS_SetUILock,0)
02557
02567 #define ptp_canon_eos_resetuilock(params) ptp_generic_no_data(params,PTP_OC_CANON_EOS_ResetUILock,0)
02568
02578 #define ptp_canon_eos_start_viewfinder(params) ptp_generic_no_data(params,PTP_OC_CANON_EOS_InitiateViewfinder,0)
02579
02589 #define ptp_canon_eos_end_viewfinder(params) ptp_generic_no_data(params,PTP_OC_CANON_EOS_TerminateViewfinder,0)
02590 uint16_t ptp_canon_eos_get_viewfinder_image (PTPParams* params, unsigned char **data, unsigned int *size);
02591 uint16_t ptp_canon_eos_get_viewfinder_image_handler (PTPParams* params, PTPDataHandler*);
02592 uint16_t ptp_canon_get_objecthandle_by_name (PTPParams* params, char* name, uint32_t* objectid);
02593 uint16_t ptp_canon_get_directory (PTPParams* params, PTPObjectHandles *handles, PTPObjectInfo **oinfos, uint32_t **flags);
02604 #define ptp_canon_setobjectarchive(params,oid,flags) ptp_generic_no_data(params,PTP_OC_CANON_SetObjectArchive,2,oid,flags)
02605 uint16_t ptp_canon_get_customize_data (PTPParams* params, uint32_t themenr,
02606 unsigned char **data, unsigned int *size);
02607 uint16_t ptp_canon_getpairinginfo (PTPParams* params, uint32_t nr, unsigned char**, unsigned int*);
02608
02609 uint16_t ptp_canon_eos_getstorageids (PTPParams* params, PTPStorageIDs* storageids);
02610 uint16_t ptp_canon_eos_getstorageinfo (PTPParams* params, uint32_t p1, unsigned char**, unsigned int*);
02611 uint16_t ptp_canon_eos_getpartialobject (PTPParams* params, uint32_t oid, uint32_t off, uint32_t xsize, unsigned char**data);
02612 uint16_t ptp_canon_eos_getobjectinfoex (PTPParams* params, uint32_t storageid, uint32_t objectid, uint32_t unk,
02613 PTPCANONFolderEntry **entries, unsigned int *nrofentries);
02614 uint16_t ptp_canon_eos_setdevicepropvalueex (PTPParams* params, unsigned char* data, unsigned int size);
02615 #define ptp_canon_eos_setremotemode(params,p1) ptp_generic_no_data(params,PTP_OC_CANON_EOS_SetRemoteMode,1,p1)
02616 #define ptp_canon_eos_seteventmode(params,p1) ptp_generic_no_data(params,PTP_OC_CANON_EOS_SetEventMode,1,p1)
02617
02628 #define ptp_canon_eos_transfercomplete(params,oid) ptp_generic_no_data(params,PTP_OC_CANON_EOS_TransferComplete,1,oid)
02629
02630 #define ptp_canon_eos_pchddcapacity(params,p1,p2,p3) ptp_generic_no_data(params,PTP_OC_CANON_EOS_PCHDDCapacity,3,p1,p2,p3)
02631 uint16_t ptp_canon_eos_bulbstart (PTPParams* params);
02632 uint16_t ptp_canon_eos_bulbend (PTPParams* params);
02633 uint16_t ptp_canon_eos_getdevicepropdesc (PTPParams* params, uint16_t propcode,
02634 PTPDevicePropDesc *devicepropertydesc);
02635 uint16_t ptp_canon_eos_setdevicepropvalue (PTPParams* params, uint16_t propcode,
02636 PTPPropertyValue* value, uint16_t datatype);
02637 uint16_t ptp_nikon_get_vendorpropcodes (PTPParams* params, uint16_t **props, unsigned int *size);
02638 uint16_t ptp_nikon_curve_download (PTPParams* params,
02639 unsigned char **data, unsigned int *size);
02640 uint16_t ptp_nikon_getptpipinfo (PTPParams* params, unsigned char **data, unsigned int *size);
02641 uint16_t ptp_nikon_getwifiprofilelist (PTPParams* params);
02642 uint16_t ptp_nikon_writewifiprofile (PTPParams* params, PTPNIKONWifiProfile* profile);
02654 #define ptp_nikon_deletewifiprofile(params,profilenr) ptp_generic_no_data(params,PTP_OC_NIKON_DeleteProfile,1,profilenr)
02655
02666 #define ptp_nikon_setcontrolmode(params,mode) ptp_generic_no_data(params,PTP_OC_NIKON_SetControlMode,1,mode)
02667
02677 #define ptp_nikon_afdrive(params) ptp_generic_no_data(params,PTP_OC_NIKON_AfDrive,0)
02678
02688 #define ptp_canon_eos_afdrive(params) ptp_generic_no_data(params,PTP_OC_CANON_EOS_DoAf,0)
02689
02700 #define ptp_canon_eos_zoom(params,x) ptp_generic_no_data(params,PTP_OC_CANON_EOS_Zoom,1,x)
02701 #define ptp_canon_eos_zoomposition(params,x,y) ptp_generic_no_data(params,PTP_OC_CANON_EOS_ZoomPosition,2,x,y)
02702
02703 #define ptp_canon_eos_remotereleaseon(params,x) ptp_generic_no_data(params,PTP_OC_CANON_EOS_RemoteReleaseOn,1,x)
02704 #define ptp_canon_eos_remotereleaseoff(params,x) ptp_generic_no_data(params,PTP_OC_CANON_EOS_RemoteReleaseOff,1,x)
02705
02717 #define ptp_nikon_mfdrive(params,flag,amount) ptp_generic_no_data(params,PTP_OC_NIKON_MfDrive,2,flag,amount)
02718
02730 #define ptp_canon_eos_drivelens(params,amount) ptp_generic_no_data(params,PTP_OC_CANON_EOS_DriveLens,1,amount)
02731
02742 #define ptp_nikon_capture(params,x) ptp_generic_no_data(params,PTP_OC_NIKON_Capture,1,x)
02743
02753 #define ptp_nikon_capture_sdram(params) ptp_generic_no_data(params,PTP_OC_NIKON_AfCaptureSDRAM,0)
02754
02765 #define ptp_nikon_delete_sdram_image(params,oid) ptp_generic_no_data(params,PTP_OC_NIKON_DelImageSDRAM,1,oid)
02766
02776 #define ptp_nikon_start_liveview(params) ptp_generic_no_data(params,PTP_OC_NIKON_StartLiveView,0)
02777 uint16_t ptp_nikon_get_liveview_image (PTPParams* params, unsigned char**,unsigned int*);
02778 uint16_t ptp_nikon_get_preview_image (PTPParams* params, unsigned char**, unsigned int*, uint32_t*);
02789 #define ptp_nikon_end_liveview(params) ptp_generic_no_data(params,PTP_OC_NIKON_EndLiveView,0)
02790 uint16_t ptp_nikon_check_event (PTPParams* params, PTPContainer **evt, int *evtcnt);
02791 uint16_t ptp_nikon_getfileinfoinblock (PTPParams* params, uint32_t p1, uint32_t p2, uint32_t p3,
02792 unsigned char **data, unsigned int *size);
02804 #define ptp_nikon_device_ready(params) ptp_generic_no_data (params, PTP_OC_NIKON_DeviceReady, 0)
02805 uint16_t ptp_mtp_getobjectpropssupported (PTPParams* params, uint16_t ofc, uint32_t *propnum, uint16_t **props);
02806
02807
02808 static inline int
02809 ptp_operation_issupported(PTPParams* params, uint16_t operation)
02810 {
02811 int i=0;
02812
02813 for (;i<params->deviceinfo.OperationsSupported_len;i++) {
02814 if (params->deviceinfo.OperationsSupported[i]==operation)
02815 return 1;
02816 }
02817 return 0;
02818 }
02819
02820 int ptp_event_issupported (PTPParams* params, uint16_t event);
02821 int ptp_property_issupported (PTPParams* params, uint16_t property);
02822
02823 void ptp_free_devicepropdesc (PTPDevicePropDesc* dpd);
02824 void ptp_free_devicepropvalue (uint16_t dt, PTPPropertyValue* dpd);
02825 void ptp_free_objectpropdesc (PTPObjectPropDesc* dpd);
02826 void ptp_free_params (PTPParams *params);
02827 void ptp_free_objectinfo (PTPObjectInfo *oi);
02828 void ptp_free_object (PTPObject *oi);
02829
02830 const char *ptp_strerror(uint16_t error);
02831 void ptp_perror (PTPParams* params, uint16_t error);
02832 void ptp_debug (PTPParams *params, const char *format, ...);
02833 void ptp_error (PTPParams *params, const char *format, ...);
02834
02835
02836 const char*
02837 ptp_get_property_description(PTPParams* params, uint16_t dpc);
02838
02839 int
02840 ptp_render_property_value(PTPParams* params, uint16_t dpc,
02841 PTPDevicePropDesc *dpd, int length, char *out);
02842 int ptp_render_ofc(PTPParams* params, uint16_t ofc, int spaceleft, char *txt);
02843 int ptp_render_opcode(PTPParams* params, uint16_t opcode, int spaceleft, char *txt);
02844 int ptp_render_mtp_propname(uint16_t propid, int spaceleft, char *txt);
02845 MTPProperties *ptp_get_new_object_prop_entry(MTPProperties **props, int *nrofprops);
02846 void ptp_destroy_object_prop(MTPProperties *prop);
02847 void ptp_destroy_object_prop_list(MTPProperties *props, int nrofprops);
02848 MTPProperties *ptp_find_object_prop_in_cache(PTPParams *params, uint32_t const handle, uint32_t const attribute_id);
02849 void ptp_remove_object_from_cache(PTPParams *params, uint32_t handle);
02850 uint16_t ptp_add_object_to_cache(PTPParams *params, uint32_t handle);
02851 uint16_t ptp_object_want (PTPParams *, uint32_t handle, int want, PTPObject**retob);
02852 void ptp_objects_sort (PTPParams *);
02853 uint16_t ptp_object_find (PTPParams *params, uint32_t handle, PTPObject **retob);
02854 uint16_t ptp_object_find_or_insert (PTPParams *params, uint32_t handle, PTPObject **retob);
02855
02856 void ptp_nikon_getptpipguid (unsigned char* guid);
02857
02858 enum PTP_CHDK_Command {
02859 PTP_CHDK_Shutdown = 0,
02860
02861 PTP_CHDK_GetMemory,
02862
02863
02864 PTP_CHDK_SetMemoryLong,
02865
02866 PTP_CHDK_CallFunction,
02867
02868 PTP_CHDK_GetPropCase,
02869
02870
02871 PTP_CHDK_GetParamData,
02872
02873
02874 PTP_CHDK_TempData,
02875 PTP_CHDK_UploadFile,
02876 PTP_CHDK_DownloadFile,
02877
02878 PTP_CHDK_SwitchMode,
02879 PTP_CHDK_ExecuteLUA,
02880 PTP_CHDK_GetVideoSettings,
02881 PTP_CHDK_GetScriptOutput,
02882 PTP_CHDK_OpenDir,
02883 PTP_CHDK_ReadDir,
02884 PTP_CHDK_CloseDir,
02885 PTP_CHDK_GetShootingModesList,
02886 PTP_CHDK_StartDownloadFile,
02887 PTP_CHDK_ResumeDownloadFile,
02888 PTP_CHDK_EndDownloadFile,
02889 };
02890
02891 #define PTP_OC_CHDK 0x9999
02892 typedef struct tagptp_chdk_videosettings {
02893 long live_image_buffer_width;
02894 long live_image_width;
02895 long live_image_height;
02896 long bitmap_buffer_width;
02897 long bitmap_width;
02898 long bitmap_height;
02899 unsigned palette[16];
02900 } ptp_chdk_videosettings;
02901
02902 #define ptp_chdk_shutdown_hard(params) ptp_generic_no_data(params,PTP_OC_CHDK,2,PTP_CHDK_Shutdown,0)
02903 #define ptp_chdk_shutdown_soft(params) ptp_generic_no_data(params,PTP_OC_CHDK,2,PTP_CHDK_Shutdown,1)
02904 #define ptp_chdk_reboot(params) ptp_generic_no_data(params,PTP_OC_CHDK,2,PTP_CHDK_Shutdown,2)
02905 #define ptp_chdk_reboot_fw_update(params) ptp_generic_no_data(params,PTP_OC_CHDK,2,PTP_CHDK_Shutdown,3)
02906 uint16_t ptp_chdk_get_memory(PTPParams* params, int start, int num, unsigned char**);
02907 #define ptp_chdk_set_memory_long(params,addr,val) ptp_generic_no_data(params,PTP_OC_CHDK,3,PTP_CHDK_SetMemoryLong,addr,val)
02908 uint16_t ptp_chdk_call(PTPParams* params, int *args, int size, int *ret);
02909 uint16_t ptp_chdk_get_propcase(PTPParams* params, int start, int num, int* ints);
02910 uint16_t ptp_chdk_get_paramdata(PTPParams* params, int start, int num, unsigned char** x);
02911 #define ptp_chdk_switch_mode(params,mode) ptp_generic_no_data(params,PTP_OC_CHDK,2,PTP_CHDK_SwitchMode,mode)
02912 uint16_t ptp_chdk_exec_lua(PTPParams *params, char *script, uint32_t* ret);
02913 uint16_t ptp_chdk_get_script_output(PTPParams* params, char **output );
02914 uint16_t ptp_chdk_get_video_settings(PTPParams* params, ptp_chdk_videosettings* vsettings);
02915
02916 #ifdef __cplusplus
02917 }
02918 #endif
02919
02920 #endif