我遇到了XCB的问题。我不理解*_reply_t
与*_request_t
类型之间的区别。
似乎*_reply_t
代替了*_response_t
,但结构却截然不同。
例如:
xcb_randr_get_screen_resources_current_reply_t *reply = xcb_randr_get_screen_resources_current_reply(
connection, xcb_randr_get_screen_resources_current(connection, root), NULL);
所以现在reply
是*_reply_t
的类型。但是现在我需要使用xcb_randr_get_screen_resources_current_outputs
,根据这里的文档,第一个参数的类型为xcb_randr_get_screen_resources_current_request_t
:
http://www.linuxhowtos.org/manpages/3/xcb_randr_get_screen_resources_current_outputs.htm
xcb_randr_output_t *xcb_randr_get_screen_resources_current_outputs(
const xcb_randr_get_screen_resources_current_request_t *reply
);
但是,第一次调用的响应类型为xcb_randr_get_screen_resources_current_reply_t
(*_reply_t
)。如何在不进行转换的情况下将其传递给输出调用?根据文档,结构完全不同:
typedef struct xcb_randr_get_screen_resources_current_reply_t {
uint8_t response_type;
uint8_t pad0;
uint16_t sequence;
uint32_t length;
xcb_timestamp_t timestamp;
xcb_timestamp_t config_timestamp;
uint16_t num_crtcs;
uint16_t num_outputs;
uint16_t num_modes;
uint16_t names_len;
uint8_t pad1[8];
} xcb_randr_get_screen_resources_current_reply_t;
*_request_t
的结构不在我从源代码中获取的文档中:
https://xcb.freedesktop.org/manual/randr_8h_source.html#l00896
typedef struct xcb_randr_get_screen_resources_current_request_t {
uint8_t major_opcode;
uint8_t minor_opcode;
uint16_t length;
xcb_window_t window;
} xcb_randr_get_screen_resources_current_request_t;
我做ctypes所以我必须事先声明我要传递给该方法签名的类型。所以我对于一个完全不同的结构(reply
)的某些东西进入第二次调用的结果为request
非常困惑。
答案 0 :(得分:1)
我认为你偶然发现的只是一个文档错误。声称采用*_request_t
的所有功能实际上都期望*_reply_t
。从您链接的来源,只看实际的功能定义(而不是手册页所说的),你会发现
xcb_randr_output_t *
xcb_randr_get_screen_resources_current_outputs (const xcb_randr_get_screen_resources_current_reply_t *R );
您找到的结构实际上并未在文件中的任何位置使用,因此它可能是一些遗忘的遗留物,或者由于兼容性原因可能仍然存在。