modified mppc files to conform to FreeRdp coding standards
This commit is contained in:
parent
e3ff817533
commit
3b584a8cca
@ -650,12 +650,12 @@ void test_mppc(void)
|
||||
rdp.mppc->history_ptr = rdp.mppc->history_buf;
|
||||
|
||||
|
||||
/* store starting time */
|
||||
/* save starting time */
|
||||
gettimeofday(&start_time, NULL);
|
||||
|
||||
/* uncompress data */
|
||||
CU_ASSERT(decompress_rdp_5(&rdp, compressed_rd5, sizeof(compressed_rd5),
|
||||
PACKET_COMPRESSED, &roff, &rlen) == 0);
|
||||
PACKET_COMPRESSED, &roff, &rlen) == True);
|
||||
|
||||
/* get end time */
|
||||
gettimeofday(&end_time, NULL);
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -26,11 +26,11 @@
|
||||
|
||||
struct rdp_mppc
|
||||
{
|
||||
uint8_t *history_buf;
|
||||
uint8_t *history_ptr;
|
||||
uint8 *history_buf;
|
||||
uint8 *history_ptr;
|
||||
};
|
||||
|
||||
// forward declarations
|
||||
int decompress_rdp_5(rdpRdp *, uint8_t *, int, int, uint32_t *, uint32_t *);
|
||||
int decompress_rdp_5(rdpRdp *, uint8 *, int, int, uint32 *, uint32 *);
|
||||
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user