diff options
author | George Hazan <ghazan@miranda.im> | 2017-10-15 16:27:58 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2017-10-15 16:27:58 +0300 |
commit | 56239808326cc550d0b1bd45a368e89957e7021b (patch) | |
tree | b0a4f839381b543502ed963b6b1f4868086a1d6e /plugins/ExternalAPI/delphi/m_dropbox.inc | |
parent | cc2d5db55ce7c1d65d7919c7e7f0ce5c48da26f2 (diff) |
unused pascal headers removed
Diffstat (limited to 'plugins/ExternalAPI/delphi/m_dropbox.inc')
-rw-r--r-- | plugins/ExternalAPI/delphi/m_dropbox.inc | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/plugins/ExternalAPI/delphi/m_dropbox.inc b/plugins/ExternalAPI/delphi/m_dropbox.inc deleted file mode 100644 index 8e7cb913e2..0000000000 --- a/plugins/ExternalAPI/delphi/m_dropbox.inc +++ /dev/null @@ -1,28 +0,0 @@ -{$IFNDEF M_DROPBOX}
-{$DEFINE M_DROPBOX}
-
-const
-// upload file on Dropbox
-// wParam = (MCONTACT)hContact - NULL to send to the Dropbox contact
-// lParam = (LPARAM)(const wchar_t*)path - full path to file
-// returns file htansfer handle or NULL on failure
-// returns immediately, without waiting for the send
-// note, that you can track progress by using ME_PROTO_ACK
- MS_DROPBOX_SEND_FILE:PAnsiChar = 'Dropbox/Send/File';
-
-// if you want to get download links of sent files
-// use ME_DROPBOX_SENT hook. you'll get:
-type
- TTRANSFERINFO = record
- hProcess:THANDLE; // hProcess
- status :int; // status of transfer. 0 on success otherwise fail
- data :pointer; // NULL ended array of download links
- end;
-
-const
-// notifies a caller that file has been sent
-// wParam = (MCONTACT)hContact
-// lParam = (LPARAM)(TRANSFERINFO*)info - transfer info
- ME_DROPBOX_SENT:PAnsiChar = 'Dropbox/Sent/Event';
-
-{$ENDIF}
|