I forgot to remove debug code in MouseGDICallBack.
[reactos.git] / posix / include / limits.h
1 /* $Id: limits.h,v 1.5 2002/10/29 04:45:10 rex Exp $
2 */
3 /*
4 * limits.h
5 *
6 * implementation-dependent constants. Conforming to the Single UNIX(r)
7 * Specification Version 2, System Interface & Headers Issue 5
8 *
9 * This file is part of the ReactOS Operating System.
10 *
11 * Contributors:
12 * Created by KJK::Hyperion <noog@libero.it>
13 *
14 * THIS SOFTWARE IS NOT COPYRIGHTED
15 *
16 * This source code is offered for use in the public domain. You may
17 * use, modify or distribute it freely.
18 *
19 * This code is distributed in the hope that it will be useful but
20 * WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
21 * DISCLAMED. This includes but is not limited to warranties of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
23 *
24 */
25 #ifndef __LIMITS_H_INCLUDED__
26 #define __LIMITS_H_INCLUDED__
27
28 /* INCLUDES */
29
30 /* OBJECTS */
31
32 /* TYPES */
33
34 /* CONSTANTS */
35 /* TODO */
36 #define OPEN_MAX (256)
37 #define NAME_MAX (255)
38 #define ARG_MAX (255)
39 #define PATH_MAX (32768)
40
41 /* PROTOTYPES */
42
43 /* MACROS */
44
45 #endif /* __LIMITS_H_INCLUDED__ */
46
47 /* EOF */
48