Core/Enums: Fix OpenMode_Max
Former-commit-id: eb356bf9d9469fdaff2b234aa7e61751644843a3
This commit is contained in:
parent
a19762f7f6
commit
cbd73a9ac0
|
|
@ -86,7 +86,7 @@ namespace Nz
|
|||
|
||||
OpenMode_ReadWrite = OpenMode_ReadOnly | OpenMode_WriteOnly, // Ouvre en lecture/écriture
|
||||
|
||||
OpenMode_Max = OpenMode_WriteOnly
|
||||
OpenMode_Max = OpenMode_WriteOnly*2 - 1
|
||||
};
|
||||
|
||||
enum ParameterType
|
||||
|
|
@ -177,7 +177,7 @@ namespace Nz
|
|||
StreamOption_Sequential = 0x1,
|
||||
StreamOption_Text = 0x2,
|
||||
|
||||
StreamOption_Max = StreamOption_Text*2-1
|
||||
StreamOption_Max = StreamOption_Text*2 - 1
|
||||
};
|
||||
|
||||
enum Ternary
|
||||
|
|
|
|||
Loading…
Reference in New Issue