Fix build issue raised by changes in notify_select_event() prototype.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@9320 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
parent
b6e6c72041
commit
8880d1a7b4
@ -236,7 +236,7 @@ extern _IMPEXP_KERNEL void free_path(char *p);
|
|||||||
extern _IMPEXP_KERNEL status_t notify_listener(int op, nspace_id nsid,
|
extern _IMPEXP_KERNEL status_t notify_listener(int op, nspace_id nsid,
|
||||||
vnode_id vnida, vnode_id vnidb,
|
vnode_id vnida, vnode_id vnidb,
|
||||||
vnode_id vnidc, const char *name);
|
vnode_id vnidc, const char *name);
|
||||||
extern _IMPEXP_KERNEL void notify_select_event(selectsync *sync, uint32 ref);
|
// extern _IMPEXP_KERNEL void notify_select_event(selectsync *sync, uint32 ref);
|
||||||
extern _IMPEXP_KERNEL status_t send_notification(port_id port, long token,
|
extern _IMPEXP_KERNEL status_t send_notification(port_id port, long token,
|
||||||
ulong what, long op, nspace_id nsida,
|
ulong what, long op, nspace_id nsida,
|
||||||
nspace_id nsidb, vnode_id vnida,
|
nspace_id nsidb, vnode_id vnida,
|
||||||
|
@ -3392,9 +3392,16 @@ send_notification(port_id port, long token, ulong what, long op, nspace_id nsida
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef COMPILE_FOR_R5
|
||||||
void
|
void
|
||||||
notify_select_event(selectsync *sync, uint32 ref)
|
notify_select_event(selectsync *sync, uint32 ref)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
#else
|
||||||
|
status_t
|
||||||
|
notify_select_event(selectsync *sync, uint32 ref, uint8 event)
|
||||||
|
{
|
||||||
|
return B_UNSUPPORTED;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user