Last change
on this file since 18255 was 15532, checked in by vboxsync, 16 years ago |
crOpenGL: export to OSE
|
-
Property svn:eol-style
set to
native
-
Property svn:keywords
set to
Id
|
File size:
1.1 KB
|
Line | |
---|
1 | # Copyright (c) 2001, Stanford University
|
---|
2 | # All rights reserved.
|
---|
3 | #
|
---|
4 | # See the file LICENSE.txt for information on redistributing this software.
|
---|
5 |
|
---|
6 | import sys
|
---|
7 |
|
---|
8 | import apiutil
|
---|
9 |
|
---|
10 | apiutil.CopyrightC()
|
---|
11 |
|
---|
12 | print """
|
---|
13 | /* DO NOT EDIT - THIS FILE AUTOMATICALLY GENERATED BY server_dispatch_header.py SCRIPT */
|
---|
14 | #ifndef SERVER_DISPATCH_HEADER
|
---|
15 | #define SERVER_DISPATCH_HEADER
|
---|
16 |
|
---|
17 | #ifdef WINDOWS
|
---|
18 | #define SERVER_DISPATCH_APIENTRY __stdcall
|
---|
19 | #else
|
---|
20 | #define SERVER_DISPATCH_APIENTRY
|
---|
21 | #endif
|
---|
22 |
|
---|
23 | #include "chromium.h"
|
---|
24 | #include "state/cr_statetypes.h"
|
---|
25 | """
|
---|
26 |
|
---|
27 | keys = apiutil.GetDispatchedFunctions(sys.argv[1]+"/APIspec.txt")
|
---|
28 |
|
---|
29 | for func_name in keys:
|
---|
30 | if ("get" in apiutil.Properties(func_name) or
|
---|
31 | apiutil.FindSpecial( "server", func_name ) or
|
---|
32 | apiutil.FindSpecial( sys.argv[1]+"/../state_tracker/state", func_name )):
|
---|
33 |
|
---|
34 | params = apiutil.Parameters(func_name)
|
---|
35 | return_type = apiutil.ReturnType(func_name)
|
---|
36 |
|
---|
37 | print '%s SERVER_DISPATCH_APIENTRY crServerDispatch%s( %s );' % (return_type, func_name, apiutil.MakeDeclarationString( params ))
|
---|
38 |
|
---|
39 | print '#endif /* SERVER_DISPATCH_HEADER */'
|
---|
Note:
See
TracBrowser
for help on using the repository browser.