Changeset 101599 in vbox for trunk/include/VBox
- Timestamp:
- Oct 26, 2023 9:47:33 AM (15 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/pdmifs.h
r101598 r101599 2398 2398 #define PDMIVFSCONNECTOR_IID "a1fc51e0-414a-4e78-8388-8053b9dc6521" 2399 2399 2400 2401 /** Pointer to an GPIO ports interface. */2402 typedef struct PDMIGPIOPORTS *PPDMIGPIOPORTS;2403 /**2404 * Interface for GPIO ports (down).2405 * Pair with PDMIGPIOCONNECTORS.2406 */2407 typedef struct PDMIGPIOPORTS2408 {2409 uint32_t uDummy;2410 } PDMIGPIOPORTS;2411 /** PDMIGPIOPORTS interface ID. */2412 #define PDMIGPIOPORTS_IID "75e0017c-4cda-47a4-8160-f4cc436025c4"2413 2414 2415 /** Pointer to an GPIO connectors interface. */2416 typedef struct PDMIGPIOCONNECTORS *PPDMIGPIOCONNECTORS;2417 /**2418 * GPIO connector interface (up).2419 * Pair with PDMIGPIOPORTS.2420 */2421 typedef struct PDMIGPIOCONNECTOR2422 {2423 uint32_t uDummy;2424 } PDMIGPIOCONNECTOR;2425 /** PDMIGPIOCONNECTOR interface ID. */2426 #define PDMIGPIOCONNECTOR_IID "504bff7e-489f-4829-8cc3-f9b080d39133"2427 2428 2400 /** @} */ 2429 2401
Note:
See TracChangeset
for help on using the changeset viewer.