CString SearchString[]
C++で受け取るメソッドがあります
この配列のサイズを for ループで反復処理したいのですが、そうでない場合は、この配列を に変換する方法を誰かが提案できCStringArray
ます。
#include <string>
using namespace std;
void myFunction(HWND shwnd, CString SearchString[], BOOl Visible)
{
//how do i get the size of "SearchString" here;
// I do not know how much it is populated, there might be one, two or three strings
}
int main()
{
CString Header[12];
BOOL bVisible;
myFunction(shwnd,Header,bVisible);
return 0;
}