15 lines
261 B
C
15 lines
261 B
C
|
/*
|
||
|
* Copyright 2010, Clemens Zeidler, haiku@clemens-zeidler.de.
|
||
|
* Distributed under the terms of the MIT License.
|
||
|
*/
|
||
|
#ifndef _NODE_MONITOR_PRIVATE_H
|
||
|
#define _NODE_MONITOR_PRIVATE_H
|
||
|
|
||
|
|
||
|
enum {
|
||
|
B_WATCH_VOLUME = 0xF000
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif /* _NODE_MONITOR_PRIVATE_H */
|