Ignore:
Timestamp:
Apr 4, 2008, 7:47:07 PM (16 years ago)
Author:
dai_9181
Message:

構成管理を変更中・・・(いったんコミット)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ab5.0/abdev/ProjectEditor/nkf_class.cpp

    r24 r475  
     1#include "stdafx.h"
     2
    13#include "common.h"
     4
     5using namespace ActiveBasic::IDE;
    26
    37//文字コード変換用クラスライブラリ
    48CNkf nkf;
    59
    6 CNkf::CNkf(){
    7     char temporary[MAX_PATH];
    8     sprintf(temporary,"%sSubOperation\\nkf32.dll",pj_editor_Dir);
    9 
    10     hLib=LoadLibrary(temporary);
     10CNkf::CNkf()
     11{
     12    const std::string nkf32DllPath = Program::GetApplicationSystemDirPath() + "\\system\\nkf32.dll";
     13    hLib = LoadLibrary( nkf32DllPath.c_str() );
    1114
    1215    pGetNkfVersion=(GetNkfVersion)GetProcAddress(hLib,"GetNkfVersion");
Note: See TracChangeset for help on using the changeset viewer.