author | Michael Krelin <hacker@klever.net> | 2011-03-17 22:03:33 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2011-03-17 22:03:33 (UTC) |
commit | 59aa03f15cdc33a93ad604392747a36634996aab (patch) (unidiff) | |
tree | 22f54ba0f311c6b7d00a075b98fe5afc599c70a0 /src/eyefi.h | |
parent | 1ba4673eb47af80bc089963524308e940c78070d (diff) | |
download | iii-59aa03f15cdc33a93ad604392747a36634996aab.zip iii-59aa03f15cdc33a93ad604392747a36634996aab.tar.gz iii-59aa03f15cdc33a93ad604392747a36634996aab.tar.bz2 |
added "flags" parameter for GetPhotoStatus request
Signed-off-by: Michael Krelin <hacker@klever.net>
-rw-r--r-- | src/eyefi.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/eyefi.h b/src/eyefi.h index 70e918d..84a5ebd 100644 --- a/src/eyefi.h +++ b/src/eyefi.h | |||
@@ -18,24 +18,25 @@ int efs__StartSession( | |||
18 | std::string macaddress,std::string cnonce, | 18 | std::string macaddress,std::string cnonce, |
19 | int transfermode,long transfermodetimestamp, | 19 | int transfermode,long transfermodetimestamp, |
20 | struct rns__StartSessionResponse &r ); | 20 | struct rns__StartSessionResponse &r ); |
21 | 21 | ||
22 | struct rns__GetPhotoStatusResponse { | 22 | struct rns__GetPhotoStatusResponse { |
23 | int fileid; | 23 | int fileid; |
24 | long offset; | 24 | long offset; |
25 | }; | 25 | }; |
26 | 26 | ||
27 | int efs__GetPhotoStatus( | 27 | int efs__GetPhotoStatus( |
28 | std::string credential, std::string macaddress, | 28 | std::string credential, std::string macaddress, |
29 | std::string filename, long filesize, std::string filesignature, | 29 | std::string filename, long filesize, std::string filesignature, |
30 | int flags, | ||
30 | struct rns__GetPhotoStatusResponse &r ); | 31 | struct rns__GetPhotoStatusResponse &r ); |
31 | 32 | ||
32 | struct rns__MarkLastPhotoInRollResponse { | 33 | struct rns__MarkLastPhotoInRollResponse { |
33 | }; | 34 | }; |
34 | 35 | ||
35 | int efs__MarkLastPhotoInRoll( | 36 | int efs__MarkLastPhotoInRoll( |
36 | std::string macaddress, int mergedelta, | 37 | std::string macaddress, int mergedelta, |
37 | struct rns__MarkLastPhotoInRollResponse &r ); | 38 | struct rns__MarkLastPhotoInRollResponse &r ); |
38 | 39 | ||
39 | struct rns__UploadPhotoResponse { | 40 | struct rns__UploadPhotoResponse { |
40 | bool success; | 41 | bool success; |
41 | }; | 42 | }; |