<meta http-equiv="Content-Type" content="text/html; charset=GB18030"><div>Hi, all. <br></div><div>I use XChangeProperty/XGetWindowProperty as following code:</div><div> </div><div>#include <stdio.h><br>#include <X11/Xlib.h><br>#include <X11/Xatom.h><br><br>int main(void)<br>{<br>    Display *display=XOpenDisplay(NULL);<br>    int screen=DefaultScreen(display);<br>    Window root_win=RootWindow(display, screen);<br><br>    Window win=XCreateSimpleWindow(display, root_win, -1, -1, 1, 1, 0, 0, 0);<br>    Atom prop=XInternAtom(display, "test_prop", False);<br>    Atom type=XInternAtom(display, "test_type", False);<br>    int32_t a[]={0x11223344, 0x55667788};<br>    XChangeProperty(display, win, prop, type, 32, PropModeReplace, (unsigned char *)a, 2);<br><br>    int fmt;<br>    unsigned long nitems=0, n=0, rest;<br>    unsigned char *p=NULL;<br>    Atom atype;<br>    if( XGetWindowProperty(display, win, prop, 0, 2, False,<br>        type, &atype, &fmt, &n, &rest, &p) != Success<br>        || !atype || !fmt || !n || !p)<br>        XFree(p), p=NULL;<br>    long *d=(long *)p;<br>    printf("%lx, %lx, %lu\n", d[0], d[1], rest);<br><br>    XCloseDisplay(display);<br><br>    return 0;<br>}<br></div><div><br></div><div>But the output is:<br><hr align="left" style="margin: 0 0 10px 0;border: 0;border-bottom:1px solid #E4E5E6;height:0;line-height:0;font-size:0;padding: 20px 0 0 0;width: 50px;"><div style="font-size:14px;font-family:Verdana;color:#000;"><a class="xm_write_card" id="in_alias" style="white-space: normal; display: inline-block; text-decoration: none !important;font-family: -apple-system,BlinkMacSystemFont,PingFang SC,Microsoft YaHei;" href="https://wx.mail.qq.com/home/index?t=readmail_businesscard_midpage&nocheck=true&name=406643764&icon=http%3A%2F%2Fthirdqq.qlogo.cn%2Fg%3Fb%3Dsdk%26k%3DJbWZCVxhvqPvCEFNVWedQw%26s%3D100%26t%3D1556323638%3Frand%3D1646747733&mail=406643764%40qq.com&code=" target="_blank"><table style="white-space: normal;table-layout: fixed; padding-right: 20px;" contenteditable="false" cellpadding="0" cellspacing="0"><tbody><tr valign="top"><td style="width: 40px;min-width: 40px; padding-top:10px"><div style="width: 38px; height: 38px; border: 1px #FFF solid; border-radius:50%; margin: 0;vertical-align: top;box-shadow: 0 0 10px 0 rgba(127,152,178,0.14);"><img src="http://thirdqq.qlogo.cn/g?b=sdk&k=JbWZCVxhvqPvCEFNVWedQw&s=100&t=1556323638?rand=1646747733" style="width:100%;height:100%;border-radius:50%;pointer-events: none;"></div></td><td style="padding: 10px 0 8px 10px;"><div class="businessCard_name" style="font-size: 14px;color: #33312E;line-height: 20px; padding-bottom: 2px; margin:0;font-weight: 500;">406643764</div><div class="businessCard_mail" style="font-size: 12px;color: #999896;line-height: 18px; margin:0;">406643764@qq.com</div></td></tr></tbody></table></a></div></div><div> </div>