Changes between Version 12 and Version 13 of MapGuideRfc80


Ignore:
Timestamp:
Aug 10, 2009, 8:20:35 PM (15 years ago)
Author:
leaf
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • MapGuideRfc80

    v12 v13  
    4747    /// Specifies that the parameter is an input parameter.
    4848    ///
    49     static const INT32 Input = 1;
     49    static const INT32 Input = 0;
    5050
    5151    /// \brief
    5252    /// Specifies that the parameter is an output parameter.
    5353    ///
    54     static const INT32 Output = 2;
     54    static const INT32 Output = 1;
    5555
    5656    /// \brief
    5757    /// Specifies that the parameter is an input & output parameter.
    5858    ///
    59     static const INT32 InputOutput = 3;
     59    static const INT32 InputOutput = 2;
    6060
    6161    /// \brief
    6262    /// Specifies that the parameter is a return parameter.
    6363    ///
    64     static const INT32 Return = 4;
     64    static const INT32 Return = 3;
    6565};
    6666}}}