Changeset 63942 in vbox for trunk/src/VBox/Additions/common/crOpenGL/DD_glh.py
- Timestamp:
- Sep 22, 2016 11:01:17 AM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 110828
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/crOpenGL/DD_glh.py
r63939 r63942 125 125 126 126 if func_name in commoncall_special: 127 print("extern %s vboxDD_gl%s( %s);" % (return_type, func_name,127 print("extern %s vboxDD_gl%s(%s);" % (return_type, func_name, 128 128 apiutil.MakeDeclarationString( params ))) 129 129 else: 130 130 if apiutil.MakeDeclarationString(params)=="void": 131 print("extern %s vboxDD_gl%s( GLcontext *ctx);" % (return_type, func_name))131 print("extern %s vboxDD_gl%s(GLcontext *ctx);" % (return_type, func_name)) 132 132 else: 133 print("extern %s vboxDD_gl%s( GLcontext *ctx, %s);" % (return_type, func_name,133 print("extern %s vboxDD_gl%s(GLcontext *ctx, %s);" % (return_type, func_name, 134 134 apiutil.MakeDeclarationString( params ))) 135 135
Note:
See TracChangeset
for help on using the changeset viewer.