OLD | NEW |
1 PORTING LIBUSB TO OTHER PLATFORMS | 1 PORTING LIBUSB TO OTHER PLATFORMS |
2 | 2 |
3 Introduction | 3 Introduction |
4 ============ | 4 ============ |
5 | 5 |
6 This document is aimed at developers wishing to port libusb to unsupported | 6 This document is aimed at developers wishing to port libusb to unsupported |
7 platforms. I believe the libusb API is OS-independent, so by supporting | 7 platforms. I believe the libusb API is OS-independent, so by supporting |
8 multiple operating systems we pave the way for cross-platform USB device | 8 multiple operating systems we pave the way for cross-platform USB device |
9 drivers. | 9 drivers. |
10 | 10 |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 The libusb-devel mailing list is also a good place to ask questions and | 86 The libusb-devel mailing list is also a good place to ask questions and |
87 make suggestions about the internal API. Hopefully we can produce some | 87 make suggestions about the internal API. Hopefully we can produce some |
88 better documentation based on your questions and other input. | 88 better documentation based on your questions and other input. |
89 | 89 |
90 You are encouraged to get involved in the process; if the library needs | 90 You are encouraged to get involved in the process; if the library needs |
91 some infrastructure additions/modifications to better support your platform, | 91 some infrastructure additions/modifications to better support your platform, |
92 you are encouraged to make such changes (in cleanly distinct patch | 92 you are encouraged to make such changes (in cleanly distinct patch |
93 submissions). Even if you do not make such changes yourself, please do raise | 93 submissions). Even if you do not make such changes yourself, please do raise |
94 the issues on the mailing list at the very minimum. | 94 the issues on the mailing list at the very minimum. |
95 | 95 |
OLD | NEW |