Changeset 475 in dev for trunk/ab5.0/abdev/ProjectEditor/reg_exp.cpp
- Timestamp:
- Apr 4, 2008, 7:47:07 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/ProjectEditor/reg_exp.cpp
r80 r475 1 #include "stdafx.h" 2 1 3 #include "common.h" 4 5 using namespace ActiveBasic::IDE; 2 6 3 7 CRegExp obj_RegExp; 4 8 5 CRegExp::CRegExp(){ 6 char temporary[MAX_PATH]; 7 sprintf(temporary,"%sSubOperation\\BREGEXP.DLL",pj_editor_Dir); 8 9 hLib=LoadLibrary(temporary); 9 CRegExp::CRegExp() 10 { 11 const std::string bregexpDllPath = Program::GetApplicationSystemDirPath() + "\\system\\BREGEXP.dll"; 12 hLib = LoadLibrary( bregexpDllPath.c_str() ); 10 13 11 14 BMatch=(PFUNC_BMatch)GetProcAddress(hLib,"BMatch"); … … 34 37 else sprintf(pTemp,"m/(%s)/",exp); 35 38 36 //Shift-JIS で表現39 //Shift-JISナ表 37 40 lstrcat(pTemp,"k"); 38 41 39 // 大文字・小文字42 //蝠カE 40 43 if(!IsBigSmall) lstrcat(pTemp,"i"); 41 44 … … 78 81 else sprintf(pTemp,"s/%s/%s/",exp,szPermu); 79 82 80 //Shift-JIS で表現83 //Shift-JISナ表 81 84 lstrcat(pTemp,"k"); 82 85 83 // 大文字・小文字86 //蝠カE 84 87 if(!IsBigSmall) lstrcat(pTemp,"i"); 85 88
Note:
See TracChangeset
for help on using the changeset viewer.