Click here to Skip to main content
16,015,900 members

Comments by TRUSHAL RANE (Top 3 by date)

TRUSHAL RANE 2-Jun-12 4:50am View    
actualy i am loading X file & i want to extract the data & stored into custom format...
TRUSHAL RANE 2-Jun-12 4:49am View    
i had tried like this
DWORD* X_mesh

xmem.X_mesh= new DWORD(sizeof(meshSys));
ZeroMemory(xmem.X_mesh,sizeof(xmem.X_mesh));
memcpy(xmem.X_mesh,temp,sizeof(meshSys));


and i am reading the saved file
FILE * sFile = fopen("C://CustomX.bin", "rb");
if(sFile != NULL)
{
fread(&xmem, 1, sizeof(xmem), sFile);
}

memcpy(meshSys,xmem.X_mesh,sizeof(meshSys));

but meshSys is not properly initialized & i am getting access violation while using meshSys
TRUSHAL RANE 20-Dec-11 6:58am View    
I want to make two video file from two webcam
In some computer this code work perfectly but in some computer it gives error.
Can you tell me "how to disable audio driver of webcam?"