Changeset 475 in dev for trunk/ab5.0/abdev/ProjectEditor/nkf_class.cpp
- Timestamp:
- Apr 4, 2008, 7:47:07 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/ProjectEditor/nkf_class.cpp
r24 r475 1 #include "stdafx.h" 2 1 3 #include "common.h" 4 5 using namespace ActiveBasic::IDE; 2 6 3 7 //文字コード変換用クラスライブラリ 4 8 CNkf nkf; 5 9 6 CNkf::CNkf(){ 7 char temporary[MAX_PATH]; 8 sprintf(temporary,"%sSubOperation\\nkf32.dll",pj_editor_Dir); 9 10 hLib=LoadLibrary(temporary); 10 CNkf::CNkf() 11 { 12 const std::string nkf32DllPath = Program::GetApplicationSystemDirPath() + "\\system\\nkf32.dll"; 13 hLib = LoadLibrary( nkf32DllPath.c_str() ); 11 14 12 15 pGetNkfVersion=(GetNkfVersion)GetProcAddress(hLib,"GetNkfVersion");
Note:
See TracChangeset
for help on using the changeset viewer.