#include "childwindow.h"
#include<stdio.h>
#include<thread>
using namespace std;
ChildWindow::ChildWindow(OPENFILENAME _OFN)
{
OFN=_OFN;
printf("%s\n",OFN.lpstrFile);
thread t(&Process);
t.join();
}
void ChildWindow::Process()
{
for(;;)
{
printf("@");
}
}
코드는 이러한데요.. ㅠㅠ
구글링을 해봐도.. 잘 모르겠네요.. (_ _)