Ignore:
Timestamp:
Jul 12, 2007, 2:58:26 AM (17 years ago)
Author:
dai_9181
Message:

コード全体のリファクタリングを実施

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abdev/BasicCompiler64/amd64_main.cpp

    r142 r206  
     1#include "stdafx.h"
     2
    13#include "../BasicCompiler_Common/common.h"
    24#include "Opcode.h"
     
    17911793/////////////////////////////
    17921794
    1793 void op_call( UserProc *pUserProc ){
     1795void op_call( const UserProc *pUserProc ){
    17941796    OpBuffer[obp++] = (char)0xE8;
    17951797    pobj_SubAddrSchedule->add( pUserProc, 1 );
     
    17971799    obp += sizeof(long);
    17981800}
    1799 void op_call( DllProc *pDllProc ){
     1801void op_call( const DllProc *pDllProc ){
    18001802    OpBuffer[obp++] = (char)0xFF;
    18011803    OpBuffer[obp++] = (char)0x15;
Note: See TracChangeset for help on using the changeset viewer.