xref: /haiku/headers/private/binary_compatibility/Global.h (revision 2600324b57fa31cdea1627d584d314f2a579c4a8)
1 /*
2  * Copyright 2008, Oliver Tappe, zooey@hirschkaefer.de.
3  * Copyright 2008, Ingo Weinhold, ingo_weinhold@gmx.de.
4  * Distributed under the terms of the MIT License.
5  */
6 #ifndef _BINARY_COMPATIBILITY_GLOBAL_H_
7 #define _BINARY_COMPATIBILITY__GLOBAL_H_
8 
9 
10 // method codes
11 enum {
12 	// app kit
13 
14 	// interface kit
15 	PERFORM_CODE_MIN_SIZE				= 1000,
16 	PERFORM_CODE_MAX_SIZE				= 1001,
17 	PERFORM_CODE_PREFERRED_SIZE			= 1002,
18 	PERFORM_CODE_LAYOUT_ALIGNMENT		= 1003,
19 	PERFORM_CODE_HAS_HEIGHT_FOR_WIDTH	= 1004,
20 	PERFORM_CODE_GET_HEIGHT_FOR_WIDTH	= 1005,
21 	PERFORM_CODE_SET_LAYOUT				= 1006,
22 	PERFORM_CODE_INVALIDATE_LAYOUT		= 1007,
23 	PERFORM_CODE_DO_LAYOUT				= 1008
24 
25 	// support kit
26 };
27 
28 
29 #endif // _BINARY_COMPATIBILITY__GLOBAL_H_
30