xref: /haiku/src/apps/diskprobe/DiskProbe.h (revision 02354704729d38c3b078c696adc1bbbd33cbcf72)
1 /*
2  * Copyright 2004-2018, Axel Dörfler, axeld@pinc-software.de.
3  * All rights reserved. Distributed under the terms of the MIT license.
4  */
5 #ifndef DISK_PROBE_H
6 #define DISK_PROBE_H
7 
8 
9 #include <SupportDefs.h>
10 
11 
12 extern const char* kSignature;
13 
14 static const uint32 kMsgOpenFilePanel = 'opFp';
15 static const uint32 kMsgOpenOpenWindow = 'opOw';
16 static const uint32 kMsgOpenWindowClosed = 'clOw';
17 static const uint32 kMsgWindowClosed = 'WiCl';
18 static const uint32 kMsgSettingsChanged = 'SeCh';
19 
20 static const uint32 kMsgOpenFindWindow = 'OpFw';
21 static const uint32 kMsgFindWindowClosed = 'clFw';
22 static const uint32 kMsgFindTarget = 'FTgt';
23 static const uint32 kMsgFind = 'find';
24 
25 
26 #endif	/* DISK_PROBE_H */
27