VirtualBox

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

最後變更 在這個檔案從65457是 63942,由 vboxsync 提交於 8 年 前

OpenGL: fixed the most annoying coding style flaws, mainly removing spaces after '(' and before ')', no semantic change

  • 屬性 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
6from __future__ import print_function
7import sys
8
9import apiutil
10
11apiutil.CopyrightC()
12
13print("""
14/* DO NOT EDIT - THIS FILE AUTOMATICALLY GENERATED BY server_dispatch_header.py SCRIPT */
15#ifndef SERVER_DISPATCH_HEADER
16#define SERVER_DISPATCH_HEADER
17
18#ifdef WINDOWS
19#define SERVER_DISPATCH_APIENTRY __stdcall
20#else
21#define SERVER_DISPATCH_APIENTRY
22#endif
23
24#include "chromium.h"
25#include "state/cr_statetypes.h"
26
27#if defined(__cplusplus)
28extern "C" {
29#endif
30
31""")
32
33keys = apiutil.GetDispatchedFunctions(sys.argv[1]+"/APIspec.txt")
34
35for func_name in keys:
36 if ("get" in apiutil.Properties(func_name) or
37 apiutil.FindSpecial( "server", func_name ) or
38 apiutil.FindSpecial( sys.argv[1]+"/../state_tracker/state", func_name )):
39
40 params = apiutil.Parameters(func_name)
41 return_type = apiutil.ReturnType(func_name)
42
43 print('%s SERVER_DISPATCH_APIENTRY crServerDispatch%s(%s);' % (return_type, func_name, apiutil.MakeDeclarationString( params )))
44
45print("""
46#if defined(__cplusplus)
47}
48#endif
49
50#endif /* SERVER_DISPATCH_HEADER */
51""")
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

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