VirtualBox

Changeset 3530 in vbox


Ignore:
Timestamp:
Jul 10, 2007 2:42:23 PM (18 years ago)
Author:
vboxsync
Message:

docs and missing type.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/iprt/types.h

    r3526 r3530  
    10151015
    10161016/**
    1017  * Rectangle data type
     1017 * Rectangle data type.
    10181018 */
    10191019typedef struct RTRECT
    10201020{
     1021    /** X coordinate. */
    10211022    int32_t     x;
     1023    /** Y coordinate. */
    10221024    int32_t     y;
     1025    /** Width. */
    10231026    uint32_t    cx;
     1027    /** Height. */
    10241028    uint32_t    cy;
    1025 } RTRECT, *PRTRECT;
     1029} RTRECT;
     1030/** Pointer to a rectangle. */
     1031typedef RTRECT *PRTRECT;
     1032/** Pointer to a const rectangle. */
     1033typedef const RTRECT *PCRTRECT;
    10261034
    10271035/** @} */
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette