BNotification ABI padding
Add reserved functions and data to avoid future ABI breakage
This commit is contained in:
@@ -74,6 +74,15 @@ public:
|
|||||||
status_t Send(bigtime_t timeout = -1);
|
status_t Send(bigtime_t timeout = -1);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
virtual void _ReservedNotification1();
|
||||||
|
virtual void _ReservedNotification2();
|
||||||
|
virtual void _ReservedNotification3();
|
||||||
|
virtual void _ReservedNotification4();
|
||||||
|
virtual void _ReservedNotification5();
|
||||||
|
virtual void _ReservedNotification6();
|
||||||
|
virtual void _ReservedNotification7();
|
||||||
|
virtual void _ReservedNotification8();
|
||||||
|
|
||||||
status_t fInitStatus;
|
status_t fInitStatus;
|
||||||
|
|
||||||
BString fSourceSignature;
|
BString fSourceSignature;
|
||||||
@@ -90,6 +99,8 @@ private:
|
|||||||
BList fRefs;
|
BList fRefs;
|
||||||
BList fArgv;
|
BList fArgv;
|
||||||
BBitmap* fBitmap;
|
BBitmap* fBitmap;
|
||||||
|
|
||||||
|
uint32 _reserved[8];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -566,3 +566,13 @@ BNotification::Send(bigtime_t timeout)
|
|||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void BNotification::_ReservedNotification1() {}
|
||||||
|
void BNotification::_ReservedNotification2() {}
|
||||||
|
void BNotification::_ReservedNotification3() {}
|
||||||
|
void BNotification::_ReservedNotification4() {}
|
||||||
|
void BNotification::_ReservedNotification5() {}
|
||||||
|
void BNotification::_ReservedNotification6() {}
|
||||||
|
void BNotification::_ReservedNotification7() {}
|
||||||
|
void BNotification::_ReservedNotification8() {}
|
||||||
|
|||||||
Reference in New Issue
Block a user