summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorChris Dickens <christopher.a.dickens@gmail.com>2020-04-16 15:57:15 -0700
committerChris Dickens <christopher.a.dickens@gmail.com>2020-04-16 15:57:15 -0700
commite83f39ba6e0368d8b253a5f0b02bfd115763e0b4 (patch)
tree167cc527b1bef03b777fe3b6a14aec68d75d0578 /doc
parent61c457a699d211848efcbe538d949768e01b1d32 (diff)
downloadlibusb-e83f39ba6e0368d8b253a5f0b02bfd115763e0b4.tar.gz
libusb.h: Ensure that struct libusb_control_transfer is not padded
There is nothing explicitly preventing the compiler from adding any sort of padding to the libusb_control_transfer structure. It does not seem that any sane compiler would do so, but there is library functionality that depends on this not happening. Address this by explicitly instructing the compiler to pack the structure. Signed-off-by: Chris Dickens <christopher.a.dickens@gmail.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/doxygen.cfg.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/doxygen.cfg.in b/doc/doxygen.cfg.in
index 504d41c..f4ccf1e 100644
--- a/doc/doxygen.cfg.in
+++ b/doc/doxygen.cfg.in
@@ -2113,7 +2113,8 @@ INCLUDE_FILE_PATTERNS =
PREDEFINED = API_EXPORTED= \
DEFAULT_VISIBILITY= \
- LIBUSB_CALL=
+ LIBUSB_CALL= \
+ LIBUSB_PACKED=
# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then this
# tag can be used to specify a list of macro names that should be expanded. The