~ubuntu-branches/ubuntu/wily/xcb-util/wily

« back to all changes in this revision

Viewing changes to src/xcb_atom.h.m4

  • Committer: Package Import Robot
  • Author(s): Robert Ancell
  • Date: 2015-08-11 12:01:14 UTC
  • mfrom: (1.2.4)
  • Revision ID: package-import@ubuntu.com-20150811120114-ec837g3xvh4t80g2
Tags: 0.4.0-0ubuntu1
* New upstream release. (LP: #1473825)
* debian/control:
  - Use standards version 3.9.6
  - Drop build-depends on x11proto-core-dev
  - Rename libxcb-util0 to libxcb-util1
  - Rename libxcb-util0-dev to libxcb-util-dev
  - Add transitional libxcb-util0-dev package

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#ifndef __XCB_ATOM_H__
2
 
#define __XCB_ATOM_H__
3
 
 
4
 
#include <xcb/xcb.h>
5
 
 
6
 
#ifdef __cplusplus
7
 
extern "C" {
8
 
#endif
9
 
 
10
 
xcb_atom_t xcb_atom_get_predefined(uint16_t name_len, const char *name);
11
 
const char *xcb_atom_get_name_predefined(xcb_atom_t atom);
12
 
 
13
 
char *xcb_atom_name_by_screen(const char *base, uint8_t screen);
14
 
char *xcb_atom_name_by_resource(const char *base, uint32_t resource);
15
 
char *xcb_atom_name_unique(const char *base, uint32_t id);
16
 
 
17
 
#ifdef __cplusplus
18
 
}
19
 
#endif
20
 
 
21
 
#endif /* __XCB_ATOM_H__ */