mirror of https://github.com/FreeRDP/FreeRDP
build: fix compiler warnings
warning: redundant redeclaration Tested with: 4.7.2 and 3.5.0-1~exp1
This commit is contained in:
parent
02e6c3932b
commit
a371723c4f
|
@ -63,7 +63,6 @@ FREERDP_API BOOL ber_read_universal_tag(wStream* s, BYTE tag, BOOL pc);
|
|||
FREERDP_API int ber_write_universal_tag(wStream* s, BYTE tag, BOOL pc);
|
||||
FREERDP_API BOOL ber_read_application_tag(wStream* s, BYTE tag, int* length);
|
||||
FREERDP_API void ber_write_application_tag(wStream* s, BYTE tag, int length);
|
||||
FREERDP_API BOOL ber_read_application_tag(wStream* s, BYTE tag, int* length);
|
||||
FREERDP_API BOOL ber_read_enumerated(wStream* s, BYTE* enumerated, BYTE count);
|
||||
FREERDP_API void ber_write_enumerated(wStream* s, BYTE enumerated, BYTE count);
|
||||
FREERDP_API BOOL ber_read_contextual_tag(wStream* s, BYTE tag, int* length, BOOL pc);
|
||||
|
|
|
@ -68,7 +68,6 @@ FREERDP_API BOOL er_read_universal_tag(wStream* s, BYTE tag, BOOL pc);
|
|||
FREERDP_API void er_write_universal_tag(wStream* s, BYTE tag, BOOL pc);
|
||||
FREERDP_API BOOL er_read_application_tag(wStream* s, BYTE tag, int* length);
|
||||
FREERDP_API void er_write_application_tag(wStream* s, BYTE tag, int length, BOOL flag);
|
||||
FREERDP_API BOOL er_read_application_tag(wStream* s, BYTE tag, int* length);
|
||||
FREERDP_API BOOL er_read_enumerated(wStream* s, BYTE* enumerated, BYTE count);
|
||||
FREERDP_API void er_write_enumerated(wStream* s, BYTE enumerated, BYTE count, BOOL flag);
|
||||
FREERDP_API BOOL er_read_contextual_tag(wStream* s, BYTE tag, int* length, BOOL pc);
|
||||
|
|
|
@ -24,7 +24,6 @@
|
|||
#include <freerdp/primitives.h>
|
||||
#include <freerdp/codec/color.h>
|
||||
|
||||
#include "prim_internal.h"
|
||||
#include "prim_YUV.h"
|
||||
|
||||
/**
|
||||
|
|
|
@ -33,17 +33,5 @@ struct rdtk_surface
|
|||
BYTE* data;
|
||||
BOOL owner;
|
||||
};
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
rdtkSurface* rdtk_surface_new(rdtkEngine* engine, BYTE* data, int width, int height, int scanline);
|
||||
void rdtk_surface_free(rdtkSurface* surface);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* RDTK_SURFACE_PRIVATE_H */
|
||||
|
||||
|
|
Loading…
Reference in New Issue