/* Copyright (c) 2001, Stanford University
* All rights reserved
*
* See the file LICENSE.txt for information on redistributing this software.
*/
#include "chromium.h"
#include "cr_error.h"
#include "server_dispatch.h"
#include "server.h"
#include "cr_string.h"
{
if (retval)
else
return retval; /* WILL PROBABLY BE IGNORED */
}
void SERVER_DISPATCH_APIENTRY crServerDispatchGetProgramStringNV( GLuint id, GLenum pname, GLubyte * program )
{
crError( "glGetProgramStringNV isn't *ever* allowed to be on the wire!" );
(void) id;
(void) pname;
(void) program;
}
void SERVER_DISPATCH_APIENTRY crServerDispatchGetProgramStringARB( GLuint id, GLenum pname, void * program )
{
crError( "glGetProgramStringARB isn't *ever* allowed to be on the wire!" );
(void) id;
(void) pname;
(void) program;
}