Changeset 206 in dev for trunk/abdev/BasicCompiler64/amd64_main.cpp
- Timestamp:
- Jul 12, 2007, 2:58:26 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler64/amd64_main.cpp
r142 r206 1 #include "stdafx.h" 2 1 3 #include "../BasicCompiler_Common/common.h" 2 4 #include "Opcode.h" … … 1791 1793 ///////////////////////////// 1792 1794 1793 void op_call( UserProc *pUserProc ){1795 void op_call( const UserProc *pUserProc ){ 1794 1796 OpBuffer[obp++] = (char)0xE8; 1795 1797 pobj_SubAddrSchedule->add( pUserProc, 1 ); … … 1797 1799 obp += sizeof(long); 1798 1800 } 1799 void op_call( DllProc *pDllProc ){1801 void op_call( const DllProc *pDllProc ){ 1800 1802 OpBuffer[obp++] = (char)0xFF; 1801 1803 OpBuffer[obp++] = (char)0x15;
Note:
See TracChangeset
for help on using the changeset viewer.