Changeset 44707 in vbox for trunk/include/VBox/vmm
- Timestamp:
- Feb 15, 2013 1:48:58 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/pdmifs.h
r44130 r44707 2066 2066 * @param cBits Bits per pixel (0 = do not change). 2067 2067 * @param idxDisplay The display index. 2068 * @param xOrigin The X coordinate of the lower left corner of the 2069 * display. (Presumably, as the lazy coder 2070 * adding this parameter didn't bother to document it.) 2071 * @param yOrigin The Y coordinate of the lower left corner of the 2072 * display. (Presumably, as the lazy coder adding 2073 * this parameter didn't bother to document it.) 2074 * @param fEnabled Whether the display is enabled or not. (Guessing 2075 * again.) 2076 * @param fChangeOrigin Whether the display origin point changed. (Guess) 2077 * @todo r=bird: Any reason why this interface is using uint32_t and not int32_t 2078 * for xOrigin and yOrigin? The Main side is using LONG there, while the 2079 * cx/cy are ULONG. 2068 2080 */ 2069 2081 DECLR3CALLBACKMEMBER(int, pfnRequestDisplayChange,(PPDMIVMMDEVPORT pInterface, uint32_t cx, 2070 2082 uint32_t cy, uint32_t cBits, uint32_t idxDisplay, 2071 uint32_t cxOrigin, uint32_t cyOrigin, bool fEnable, bool fChangeOrigin));2083 uint32_t xOrigin, uint32_t yOrigin, bool fEnable, bool fChangeOrigin)); 2072 2084 2073 2085 /**
Note:
See TracChangeset
for help on using the changeset viewer.