Cuando {0}
se usa para inicializar un objeto, ¿qué significa? No puedo encontrar ninguna referencia a {0}
ninguna parte y, debido a las llaves, las búsquedas de Google no son útiles.
Código de ejemplo:
SHELLEXECUTEINFO sexi = {0}; // what does this do?
sexi.cbSize = sizeof(SHELLEXECUTEINFO);
sexi.hwnd = NULL;
sexi.fMask = SEE_MASK_NOCLOSEPROCESS;
sexi.lpFile = lpFile.c_str();
sexi.lpParameters = args;
sexi.nShow = nShow;
if(ShellExecuteEx(&sexi))
{
DWORD wait = WaitForSingleObject(sexi.hProcess, INFINITE);
if(wait == WAIT_OBJECT_0)
GetExitCodeProcess(sexi.hProcess, &returnCode);
}
Sin él, el código anterior se bloqueará en tiempo de ejecución.