Changeset 44762 in vbox for trunk/include/VBox/vmm
- Timestamp:
- Feb 20, 2013 1:29:30 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/pdmifs.h
r44708 r44762 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 the2069 * display. (Presumably, as the lazy coder2070 * adding this parameter didn't bother to document it.)2071 * @param yOrigin The Y coordinate of the lower left corner of the2072 * display. (Presumably, as the lazy coder adding2073 * this parameter didn't bother to document it.)2068 * @param xOrigin The X coordinate of the lower left 2069 * corner of the secondary display with 2070 * ID = idxDisplay 2071 * @param yOrigin The Y coordinate of the lower left 2072 * corner of the secondary display with 2073 * ID = idxDisplay 2074 2074 * @param fEnabled Whether the display is enabled or not. (Guessing 2075 2075 * again.) 2076 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_t2078 * for xOrigin and yOrigin? The Main side is using LONG there, while the2079 * cx/cy are ULONG.2080 2077 */ 2081 2078 DECLR3CALLBACKMEMBER(int, pfnRequestDisplayChange,(PPDMIVMMDEVPORT pInterface, uint32_t cx, 2082 2079 uint32_t cy, uint32_t cBits, uint32_t idxDisplay, 2083 uint32_t xOrigin, uint32_t yOrigin, bool fEnabled, bool fChangeOrigin));2080 int32_t xOrigin, int32_t yOrigin, bool fEnabled, bool fChangeOrigin)); 2084 2081 2085 2082 /**
Note:
See TracChangeset
for help on using the changeset viewer.