| 86 | } |
| 87 | |
| 88 | xcb_atom_t getProtoAtom(xcb_connection_t *conn) |
| 89 | { |
| 90 | if(!conn) THROW("Invalid_argument"); |
| 91 | XCBConnAttribs *attribs = HASH::find(conn, NULL); |
| 92 | if(attribs) return attribs->protoAtom; |
| 93 | return 0; |
| 94 | } |
| 95 | |
| 96 | xcb_atom_t getDeleteAtom(xcb_connection_t *conn) |
| 97 | { |
no test coverage detected