remove debug log
Signed-off-by: dignow <linlong1265@gmail.com>
This commit is contained in:
parent
549dc05713
commit
50c737694f
@ -560,7 +560,6 @@ extern "C" fn client_format_list(
|
|||||||
conn_id = (*clip_format_list).connID as i32;
|
conn_id = (*clip_format_list).connID as i32;
|
||||||
}
|
}
|
||||||
log::debug!("client_format_list called, client id: {}, format_list: {:?}", conn_id, &format_list);
|
log::debug!("client_format_list called, client id: {}, format_list: {:?}", conn_id, &format_list);
|
||||||
|
|
||||||
let data = ClipboardFile::FormatList { format_list };
|
let data = ClipboardFile::FormatList { format_list };
|
||||||
// no need to handle result here
|
// no need to handle result here
|
||||||
if conn_id == 0 {
|
if conn_id == 0 {
|
||||||
@ -677,7 +676,6 @@ extern "C" fn client_file_contents_request(
|
|||||||
have_clip_data_id = (*file_contents_request).haveClipDataId == TRUE;
|
have_clip_data_id = (*file_contents_request).haveClipDataId == TRUE;
|
||||||
clip_data_id = (*file_contents_request).clipDataId as i32;
|
clip_data_id = (*file_contents_request).clipDataId as i32;
|
||||||
}
|
}
|
||||||
|
|
||||||
let data = ClipboardFile::FileContentsRequest {
|
let data = ClipboardFile::FileContentsRequest {
|
||||||
stream_id,
|
stream_id,
|
||||||
list_index,
|
list_index,
|
||||||
@ -689,7 +687,6 @@ extern "C" fn client_file_contents_request(
|
|||||||
clip_data_id,
|
clip_data_id,
|
||||||
};
|
};
|
||||||
log::debug!("client_file_contents_request called, data: {:?}", &data);
|
log::debug!("client_file_contents_request called, data: {:?}", &data);
|
||||||
|
|
||||||
send_data(conn_id, data);
|
send_data(conn_id, data);
|
||||||
|
|
||||||
0
|
0
|
||||||
|
@ -2210,7 +2210,6 @@ static UINT wf_cliprdr_server_format_list(CliprdrClientContext *context,
|
|||||||
|
|
||||||
for (i = 0; i < formatList->numFormats; i++)
|
for (i = 0; i < formatList->numFormats; i++)
|
||||||
{
|
{
|
||||||
printf("REMOVE ME ========================== idx: %d, format id: %d\n", i, formatList->formats[i].formatId);
|
|
||||||
format = &(formatList->formats[i]);
|
format = &(formatList->formats[i]);
|
||||||
mapping = &(clipboard->format_mappings[i]);
|
mapping = &(clipboard->format_mappings[i]);
|
||||||
mapping->remote_format_id = format->formatId;
|
mapping->remote_format_id = format->formatId;
|
||||||
@ -2590,7 +2589,6 @@ wf_cliprdr_server_format_data_response(CliprdrClientContext *context,
|
|||||||
{
|
{
|
||||||
// BOOL emptyRes = wf_do_empty_cliprdr((wfClipboard *)context->custom);
|
// BOOL emptyRes = wf_do_empty_cliprdr((wfClipboard *)context->custom);
|
||||||
// (void)emptyRes;
|
// (void)emptyRes;
|
||||||
printf("REMOVE ME ================================= msg flags: %d\n", formatDataResponse->msgFlags);
|
|
||||||
rc = E_FAIL;
|
rc = E_FAIL;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user