author | Michael Krelin <hacker@klever.net> | 2012-01-20 20:45:42 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2012-01-20 20:45:42 (UTC) |
commit | 6258fb1baaaa46a828fd6753b9401880b9b63aec (patch) (side-by-side diff) | |
tree | 5823316e2d680cbbeeb7e2e83f8fa6b897b56e57 | |
parent | ad7811fbcf54d0aebcd35c20d4a211d11029d1a2 (diff) | |
download | iii-6258fb1baaaa46a828fd6753b9401880b9b63aec.zip iii-6258fb1baaaa46a828fd6753b9401880b9b63aec.tar.gz iii-6258fb1baaaa46a828fd6753b9401880b9b63aec.tar.bz2 |
use the same timestamp type for input and output
Signed-off-by: Michael Krelin <hacker@klever.net>
-rw-r--r-- | src/eyefi.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/eyefi.h b/src/eyefi.h index 84a5ebd..eb60cc1 100644 --- a/src/eyefi.h +++ b/src/eyefi.h @@ -1,25 +1,25 @@ //gsoap efs service name: eyefi //gsoap efs service location: http://api.eye.fi/api/soap/eyefilm/v1 //gsoap efs service namespace: EyeFi/SOAP/EyeFilm //gsoap efs service method-action: StartSession "urn:StartSession" //gsoap efs service method-action: GetPhotoStatus "urn:GetPhotoStatus" //gsoap efs service method-action: MarkLastPhotoInRoll "urn:MarkLastPhotoInRoll" //gsoap rns service namespace: http://localhost/api/soap/eyefilm struct rns__StartSessionResponse { std::string credential; std::string snonce; int transfermode; - unsigned int transfermodetimestamp; + long transfermodetimestamp; bool upsyncallowed; }; int efs__StartSession( std::string macaddress,std::string cnonce, int transfermode,long transfermodetimestamp, struct rns__StartSessionResponse &r ); struct rns__GetPhotoStatusResponse { int fileid; long offset; }; |