Changes between Version 12 and Version 13 of MapGuideRfc80
- Timestamp:
- 08/10/09 20:20:35 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
MapGuideRfc80
v12 v13 47 47 /// Specifies that the parameter is an input parameter. 48 48 /// 49 static const INT32 Input = 1;49 static const INT32 Input = 0; 50 50 51 51 /// \brief 52 52 /// Specifies that the parameter is an output parameter. 53 53 /// 54 static const INT32 Output = 2;54 static const INT32 Output = 1; 55 55 56 56 /// \brief 57 57 /// Specifies that the parameter is an input & output parameter. 58 58 /// 59 static const INT32 InputOutput = 3;59 static const INT32 InputOutput = 2; 60 60 61 61 /// \brief 62 62 /// Specifies that the parameter is a return parameter. 63 63 /// 64 static const INT32 Return = 4;64 static const INT32 Return = 3; 65 65 }; 66 66 }}}