blob: 4892fa1551a63f7c6f08c911a5caa57ef28bc29b (
plain)
1
2
3
4
5
6
7
8
|
module ooo { module vba { module excel {
constants XlMousePointer {
const long xlDefault = -4143;
const long xlIBeam = 3;
const long xlNorthwestArrow = 1;
const long xlWait = 2;
};
}; }; };
|