I wrote a program for work that finds the window name
ex:
Code:
HWND hWnd = FindWindow(blah, NULL);
Well, apparently (assume blah is the actual window name) the name changes. Is there a way to include wildcards in the function?

I did some research and saw a vb function called FindWindowLike that takes more parameters
ex:
Code:
FindWindowLike(hWnd(), 0, "*blah*", "*", Null)
However, it seems it's VB specific, and I didn't find anything dealing with C\++... Any recommendations?