/* Copyright 2012 The Chromium Authors * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ /* From pp_errors.idl modified Tue Sep 23 15:37:27 2014. */ #ifndef PPAPI_C_PP_ERRORS_H_ #define PPAPI_C_PP_ERRORS_H_ #include "ppapi/c/pp_macros.h" /** * @file * This file defines an enumeration of all PPAPI error codes. */ /** * @addtogroup Enums * @{ */ /** * This enumeration contains enumerators of all PPAPI error codes. * * Errors are negative valued. Callers should treat all negative values as a * failure, even if it's not in the list, since the possible errors are likely * to expand and change over time. */ enum { … }; /** * @} */ #endif /* PPAPI_C_PP_ERRORS_H_ */