struct Vec3* Vec3_new(size_t size)
{
if(size <= 0) {
// todo: handle properly
return NULL;
}
struct Vec3 *v = malloc(sizeof(struct Vec3) * size);
size_t i;
for(i = 0; i < size; i++) {
v[i].x = 0.0F;
v[i].y = 0.0F;
v[i].z = 0.0F;
}
return v;
}
However, I believe Microsoft Intune is used within the Business to control what software can and cannot be installed. So my guess is Windows won't allow you to install via a typical .exe
I am not suggesting the above is 100% valid. I just don't want to get a new laptop and find out. Maybe I can still use Emacs via WSL... bypassing Intune????
At the end of the day, I understand Security is getting much more serious in recent years - and we even have a dedicated department - but controlling the software to install is crazy, especially for a development team.