Changeset 18140 in vbox for trunk/src/VBox/Additions/common/crOpenGL/Linux_i386_exports.py
- Timestamp:
- Mar 23, 2009 2:28:35 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 44837
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/crOpenGL/Linux_i386_exports.py
r18139 r18140 26 26 print "" 27 27 28 print""" 29 %ifdef RT_ARCH_AMD64 30 %define PTR_PRE qword 31 %define PTR_CB 8 32 %else 33 %define PTR_PRE dword 34 %define PTR_CB 4 35 %endif 36 """ 37 28 38 keys = apiutil.GetDispatchedFunctions(sys.argv[1]+"/APIspec.txt") 29 39 … … 34 44 35 45 print "BEGINPROC_EXPORTED gl%s" % func_name 36 print "\tjmp \t[ RTHCPTR_PRE glim + RTHCPTR_CB*%d]" % index46 print "\tjmp \t[PTR_PRE glim + PTR_CB*%d]" % index 37 47 print "ENDPROC gl%s" % func_name 38 48 print "" … … 59 69 index = keys.index(alias) 60 70 print "BEGINPROC_EXPORTED gl%s" % func_name 61 print "\tjmp \t[ RTHCPTR_PRE glim + RTHCPTR_CB*%d]" % index71 print "\tjmp \t[PTR_PRE glim + PTR_CB*%d]" % index 62 72 print "ENDPROC gl%s" % func_name 63 73 print ""
Note:
See TracChangeset
for help on using the changeset viewer.