34896, change to move constants to this file. r=hyatt

This commit is contained in:
mjudge%netscape.com 2000-06-09 04:12:50 +00:00
Родитель 38130f824c
Коммит cc69465978
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -1,6 +1,10 @@
interface SelectionListener {
/* IID: { 0xa6cf90e2, 0x15b3, 0x11d2, \
{ 0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32} } */
const short NO_REASON=0;
const short DRAG_REASON=1;
const short MOUSEDOWN_REASON=2;/*bitflags*/
const short MOUSEUP_REASON=4;/*bitflags*/
void notifySelectionChanged(in Document doc, in Selection sel, in short reason);
};