Ignore:
Timestamp:
Jun 17, 2007, 1:45:13 PM (17 years ago)
Author:
dai_9181
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abdev/BasicCompiler32/MakePeHdr.cpp

    r159 r165  
     1#include <jenga/include/common/Environment.h>
     2
    13#include "../BasicCompiler_Common/common.h"
    24#include "Opcode.h"
     
    342344#ifdef _DEBUG
    343345    {
    344         ofstream ofs( ( (string)BasicSystemDir + "middle_code.txt" ).c_str() );
     346        ofstream ofs( ( Jenga::Common::Environment::GetAppDir() + "\\middle_code.txt" ).c_str() );
    345347        ofs << basbuf << endl;
    346348        ofs.close();
     
    11551157    char *DosStubBuffer;
    11561158    int DosStubSize;
    1157     extern char BasicSystemDir[MAX_PATH];
    1158     sprintf(temporary,"%sSubOperation\\dosstub.pgm",BasicSystemDir);
    1159     hFile=CreateFile(temporary,GENERIC_READ,0,NULL,OPEN_EXISTING,FILE_ATTRIBUTE_NORMAL,NULL);
     1159    hFile=CreateFile(
     1160        ( Jenga::Common::Environment::GetAppDir() + "\\SubOperation\\dosstub.pgm" ).c_str(),
     1161        GENERIC_READ,0,NULL,OPEN_EXISTING,FILE_ATTRIBUTE_NORMAL,NULL);
    11601162    if(hFile==INVALID_HANDLE_VALUE){
    11611163        MessageBox(hOwnerEditor,"dosstub.pgmの読み込みに失敗","error",MB_OK);
Note: See TracChangeset for help on using the changeset viewer.