Try making a test case. That will probably find your answer.
http://en.wikipedia.org/wiki/Test_case
Also, for kicks, how do you know that's the "shutdown" line?
Last edited on
I get another issue:
I have
1 2 3 4 5 6 7 8 9 10 11 12 13
|
struct HandleStructure{
HANDLE hHandle;
};
...
void Searchfile()
{
HandleStructure strHandle;
std::vector<HandleStructure> handles(100);
strHandle.hHandle = FindFirstFile(L"*.*", &wfd);
handles.push_back(strHandle); //<-CRASH PROGRAM
...
}
|
Anybody help?! PLEASE!!
Last edited on