aboutsummaryrefslogtreecommitdiffstats
path: root/man3/LIBAXL_ERROR_FONT.3
blob: 991af6f5d15172b2471edd5c5f86eb856ec9f51f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
.TH LIBAXL_ERROR_FONT 3 libaxl
.SH NAME
LIBAXL_ERROR_FONT - Invalid font ID or fontable ID in request
.SH SYNOPSIS
.nf
#include <libaxl.h>

#define LIBAXL_ERROR_FONT 7
struct libaxl_error_font {
        uint8_t  \fI__zero\fP;
        uint8_t  \fIcode\fP;
        uint16_t \fIsequence_number\fP;
        uint32_t \fIbad_resource_id\fP;
        uint16_t \fIminor_opcode\fP;
        uint8_t  \fImajor_opcode\fP;
        uint8_t  \fI__unused\fP[21];
};
.fi
.SH DESCRIPTION
The request contains an invalid font ID or
fontable (font or graphics context) ID.
.PP
The value of the
.I __zero
field is 0
.RI ( LIBAXL_ERROR ),
which signifies that the received message is an
error message. The value of the
.I code
field is
.I LIBAXL_ERROR_FONT
to signify that the error is of the error type
described in this document.
.PP
The value of the
.I sequence_number
field is the sequence number returned by the
.BR libaxl_send_request (3)
function for the failed request.
.PP
The value of the
.I bad_resource_id
field is the invalid font ID or fontable ID
used in the failed request.
.PP
The value of the
.I major_opcode
and
.I minor_opcode
fields are the major and minor (if any) operation
codes in the failed request.
.PP
Other fields are unused and may have any value.
.SH SEE ALSO
.BR LIBAXL_ERROR (3)