delphiで作った有名ソフトって何があるの?
at TECH
122:65氏じゃないけど
06/01/14 01:40:04
読み込み高速化
URLリンク(www.uploda.org)
if (PatternMatching(L"Afx", &sfBin))
MessageBox("MFC(Static)製", fileA);
else if (PatternMatching(L"MFC??.DLL", &sfBin))
MessageBox("MFC(DLL)製", fileA);
else if (PatternMatching(L"PACKAGEINFO", &sfBin))
MessageBox("Delphi製", fileA);
else if (PatternMatching(L"DVCLAL", &sfBin))
MessageBox("BCB製", fileA);
else if (PatternMatching(L"System.Windows.Forms", &sfBin)){
if (PatternMatching(L"Basic", &sfBin))
MessageBox("VB.NET製", fileA);
else
MessageBox("C#.NET製", fileA);
}
else if (PatternMatching(L"MSVBVM", &sfBin))
MessageBox("VB製", fileA);
else if (PatternMatching(L"mingw", &sfBin))
MessageBox("mingw製", fileA);
else
MessageBox("わかんない", fileA);
次ページ続きを表示1を表示最新レス表示スレッドの検索類似スレ一覧話題のニュースおまかせリスト▼オプションを表示暇つぶし2ch
5374日前に更新/115 KB
担当:undef