blob: d903e8a9f31d1fa577a0cdfe2b9d4a48c4ffa6bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* Copyright (c) 2001, Stanford University
* All rights reserved.
*
* See the file LICENSE.txt for information on redistributing this software.
*/
#ifndef CR_STATE_ERROR_H
#define CR_STATE_ERROR_H
#include "chromium.h"
#include <iprt/cdefs.h>
DECLEXPORT(void) crStateError( int line, const char *file, GLenum err, const char *format, ... );
#endif /* CR_STATE_ERROR_H */
|