blob: 181d4d4df5edfb3a313afef714925fd3103e54a3 (
plain)
1
2
3
4
5
6
7
|
module ooo { module vba { module excel {
constants XlSaveConflictResolution {
const long xlLocalSessionChanges = 2;
const long xlOtherSessionChanges = 3;
const long xlUserResolution = 1;
};
}; }; };
|