michael@0: // michael@0: // Copyright (c) 2011 The ANGLE Project Authors. All rights reserved. michael@0: // Use of this source code is governed by a BSD-style license that can be michael@0: // found in the LICENSE file. michael@0: // michael@0: michael@0: // michael@0: // length_limits.h michael@0: // michael@0: michael@0: #if !defined(__LENGTH_LIMITS_H) michael@0: #define __LENGTH_LIMITS_H 1 michael@0: michael@0: // These constants are factored out from the rest of the headers to michael@0: // make it easier to reference them from the compiler sources. michael@0: michael@0: // These lengths do not include the NULL terminator. michael@0: #define MAX_SYMBOL_NAME_LEN 256 michael@0: #define MAX_STRING_LEN 511 michael@0: michael@0: #endif // !(defined(__LENGTH_LIMITS_H)