Ignore:
Timestamp:
Jun 18, 2007, 3:49:30 AM (17 years ago)
Author:
dai_9181
Message:

NamespaceScopesCollection::Importsをリファクタリング

File:
1 edited

Legend:

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

    r159 r169  
     1#include <jenga/include/common/Environment.h>
     2
    13#include "../BasicCompiler_Common/common.h"
    24#include "Opcode.h"
     
    11561158    char *DosStubBuffer;
    11571159    int DosStubSize;
    1158     extern char BasicSystemDir[MAX_PATH];
    1159     sprintf(temporary,"%sSubOperation\\dosstub.pgm",BasicSystemDir);
    1160     hFile=CreateFile(temporary,GENERIC_READ,0,NULL,OPEN_EXISTING,FILE_ATTRIBUTE_NORMAL,NULL);
     1160    hFile=CreateFile(
     1161        ( Jenga::Common::Environment::GetAppDir() + "\\SubOperation\\dosstub.pgm" ).c_str(),
     1162        GENERIC_READ,0,NULL,OPEN_EXISTING,FILE_ATTRIBUTE_NORMAL,NULL);
    11611163    if(hFile==INVALID_HANDLE_VALUE){
    11621164        MessageBox(hOwnerEditor,"dosstub.pgmの読み込みに失敗","error",MB_OK);
Note: See TracChangeset for help on using the changeset viewer.