diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2014-02-19 12:23:54 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2014-02-19 12:23:54 +0000 |
commit | 4df260317b8bd47ca65dca24b376b68b765a378f (patch) | |
tree | 6f8d71e64c8c728c11f5ec4e41d8eb99eaea30d9 /plugins/DropBox/src/http_request.h | |
parent | 8dc7456651251bc112b9edd9b5fd1c4849d7c83d (diff) |
DropBox:
- reorganization of projects and code
- added access request at contact's menu
- temporary disabled folders sending
- added dropbox icon
- version bump
git-svn-id: http://svn.miranda-ng.org/main/trunk@8174 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/DropBox/src/http_request.h')
-rw-r--r-- | plugins/DropBox/src/http_request.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/plugins/DropBox/src/http_request.h b/plugins/DropBox/src/http_request.h index 582de2fa83..b17ef16b58 100644 --- a/plugins/DropBox/src/http_request.h +++ b/plugins/DropBox/src/http_request.h @@ -3,6 +3,11 @@ #include "common.h"
+enum HttpStatus
+{
+ OK = 200
+};
+
class HttpRequest : public NETLIBHTTPREQUEST, public MZeroedObject
{
public:
|