GUACAMOLE-249: Switch return type of guac_rdp_cache_bitmap() back to void - it doesn't fail, and isn't dictated by the FreeRDP API.
This commit is contained in:
parent
62ee36142d
commit
f805a80bc1
@ -31,7 +31,7 @@
|
|||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
||||||
BOOL guac_rdp_cache_bitmap(rdpContext* context, rdpBitmap* bitmap) {
|
void guac_rdp_cache_bitmap(rdpContext* context, rdpBitmap* bitmap) {
|
||||||
|
|
||||||
guac_client* client = ((rdp_freerdp_context*) context)->client;
|
guac_client* client = ((rdp_freerdp_context*) context)->client;
|
||||||
guac_rdp_client* rdp_client = (guac_rdp_client*) client->data;
|
guac_rdp_client* rdp_client = (guac_rdp_client*) client->data;
|
||||||
@ -59,8 +59,6 @@ BOOL guac_rdp_cache_bitmap(rdpContext* context, rdpBitmap* bitmap) {
|
|||||||
/* Store buffer reference in bitmap */
|
/* Store buffer reference in bitmap */
|
||||||
((guac_rdp_bitmap*) bitmap)->layer = buffer;
|
((guac_rdp_bitmap*) bitmap)->layer = buffer;
|
||||||
|
|
||||||
return TRUE;
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
BOOL guac_rdp_bitmap_new(rdpContext* context, rdpBitmap* bitmap) {
|
BOOL guac_rdp_bitmap_new(rdpContext* context, rdpBitmap* bitmap) {
|
||||||
|
@ -61,11 +61,8 @@ typedef struct guac_rdp_bitmap {
|
|||||||
*
|
*
|
||||||
* @param bitmap
|
* @param bitmap
|
||||||
* The bitmap to cache.
|
* The bitmap to cache.
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* TRUE if successful, FALSE otherwise.
|
|
||||||
*/
|
*/
|
||||||
BOOL guac_rdp_cache_bitmap(rdpContext* context, rdpBitmap* bitmap);
|
void guac_rdp_cache_bitmap(rdpContext* context, rdpBitmap* bitmap);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Initializes the given newly-created rdpBitmap.
|
* Initializes the given newly-created rdpBitmap.
|
||||||
|
Loading…
Reference in New Issue
Block a user