guacamole-spice-protocol/src/protocols/rdp/guac_handlers.h

81 lines
2.9 KiB
C
Raw Normal View History

2011-03-28 03:56:14 +00:00
/* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* The Original Code is libguac-client-rdp.
*
* The Initial Developer of the Original Code is
* Michael Jumper.
* Portions created by the Initial Developer are Copyright (C) 2011
* the Initial Developer. All Rights Reserved.
*
* Contributor(s):
*
* Alternatively, the contents of this file may be used under the terms of
* either the GNU General Public License Version 2 or later (the "GPL"), or
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
* in which case the provisions of the GPL or the LGPL are applicable instead
* of those above. If you wish to allow use of your version of this file only
* under the terms of either the GPL or the LGPL, and not to allow others to
* use your version of this file under the terms of the MPL, indicate your
* decision by deleting the provisions above and replace them with the notice
* and other provisions required by the GPL or the LGPL. If you do not delete
* the provisions above, a recipient may use your version of this file under
* the terms of any one of the MPL, the GPL or the LGPL.
*
* ***** END LICENSE BLOCK ***** */
#ifndef _GUAC_RDP_GUAC_HANDLERS_H
#define _GUAC_RDP_GUAC_HANDLERS_H
2011-03-28 03:56:14 +00:00
#include <guacamole/client.h>
2013-10-15 21:13:56 +00:00
#include <guacamole/stream.h>
2011-03-28 03:56:14 +00:00
2013-11-04 09:28:27 +00:00
/**
* Structure which represents the current state of an upload.
*/
typedef struct guac_rdp_upload_stat {
/**
* The overall offset within the file that the next write should
* occur at.
*/
int offset;
/**
* The ID of the file being written to.
*/
int file_id;
} guac_rdp_upload_stat;
2011-03-28 03:56:14 +00:00
int rdp_guac_client_free_handler(guac_client* client);
int rdp_guac_client_handle_messages(guac_client* client);
int rdp_guac_client_mouse_handler(guac_client* client, int x, int y, int mask);
2011-07-24 07:47:38 +00:00
int rdp_guac_client_key_handler(guac_client* client, int keysym, int pressed);
2012-04-30 06:28:29 +00:00
int rdp_guac_client_clipboard_handler(guac_client* client, char* data);
2011-03-28 03:56:14 +00:00
2013-10-15 21:13:56 +00:00
int rdp_guac_client_file_handler(guac_client* client, guac_stream* stream,
char* mimetype, char* filename);
int rdp_guac_client_blob_handler(guac_client* client, guac_stream* stream,
void* data, int length);
int rdp_guac_client_end_handler(guac_client* client, guac_stream* stream);
2013-11-12 19:46:32 +00:00
int rdp_guac_client_ack_handler(guac_client* client, guac_stream* stream,
char* message, guac_protocol_status status);
2011-03-28 03:56:14 +00:00
#endif