独学プログラミング言語のページ > Win32API(C言語,C++) > CompareString

CompareString

2つの文字列を比較する

int CompareString(
  LCID Locale,       //ロケール識別子
  DWORD dwCmpFlags,  //比較方法のオプション
  LPCTSTR lpString1, //最初の文字列
  int cchCount1,     //最初の文字列のサイズ
  LPCTSTR lpString2, //2 番目の文字列
  int cchCount2      //2 番目の文字列のサイズ
);

ソース


C言語 C++ Delphi Visual Basic Windows サンプル Oracle 自作プログラム お勧め書籍 TOPページ