VirtualBox

source: vbox/trunk/src/VBox/HostServices/SharedOpenGL/crserverlib/server_dispatch_header.py@ 57646

最後變更 在這個檔案從57646是 43888,由 vboxsync 提交於 12 年 前

crOpenGL: more new present mechanism

  • 屬性 svn:eol-style 設為 native
  • 屬性 svn:keywords 設為 Id
檔案大小: 1.2 KB
 
1# Copyright (c) 2001, Stanford University
2# All rights reserved.
3#
4# See the file LICENSE.txt for information on redistributing this software.
5
6import sys
7
8import apiutil
9
10apiutil.CopyrightC()
11
12print """
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#if defined(__cplusplus)
27extern "C" {
28#endif
29
30"""
31
32keys = apiutil.GetDispatchedFunctions(sys.argv[1]+"/APIspec.txt")
33
34for func_name in keys:
35 if ("get" in apiutil.Properties(func_name) or
36 apiutil.FindSpecial( "server", func_name ) or
37 apiutil.FindSpecial( sys.argv[1]+"/../state_tracker/state", func_name )):
38
39 params = apiutil.Parameters(func_name)
40 return_type = apiutil.ReturnType(func_name)
41
42 print '%s SERVER_DISPATCH_APIENTRY crServerDispatch%s( %s );' % (return_type, func_name, apiutil.MakeDeclarationString( params ))
43
44print """
45#if defined(__cplusplus)
46}
47#endif
48
49#endif /* SERVER_DISPATCH_HEADER */
50"""
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette