Changeset 477 in dev for trunk/ab5.0/abdev/ProjectEditor/reg_exp.cpp
- Timestamp:
- Apr 6, 2008, 8:07:40 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/ProjectEditor/reg_exp.cpp
r475 r477 9 9 CRegExp::CRegExp() 10 10 { 11 const std::string bregexpDllPath = Program::GetApplicationSystemDirPath() + "\\system\\BREGEXP.dll";11 const std::string bregexpDllPath = ActiveBasic::Common::Environment::GetAbdevSystemDirPath() + "\\BREGEXP.dll"; 12 12 hLib = LoadLibrary( bregexpDllPath.c_str() ); 13 if( !hLib ) 14 { 15 MessageBox( NULL, "BREGEXP.dll �����Â���Ü��B", "Gñ��[", MB_OK | MB_ICONEXCLAMATION ); 16 } 13 17 14 18 BMatch=(PFUNC_BMatch)GetProcAddress(hLib,"BMatch"); … … 37 41 else sprintf(pTemp,"m/(%s)/",exp); 38 42 39 //Shift-JIS ナ表43 //Shift-JIS? 40 44 lstrcat(pTemp,"k"); 41 45 42 // 蝠カE46 //?E 43 47 if(!IsBigSmall) lstrcat(pTemp,"i"); 44 48 … … 81 85 else sprintf(pTemp,"s/%s/%s/",exp,szPermu); 82 86 83 //Shift-JIS ナ表87 //Shift-JIS? 84 88 lstrcat(pTemp,"k"); 85 89 86 // 蝠カE90 //?E 87 91 if(!IsBigSmall) lstrcat(pTemp,"i"); 88 92
Note:
See TracChangeset
for help on using the changeset viewer.