Windows Vista Tips

Windows Vista Tips > Newsgroups > Windows Vista Drivers > VideoPortInt10 Reading EDID data

Reply
Thread Tools Display Modes

VideoPortInt10 Reading EDID data

 
 
sonal
Guest
Posts: n/a

 
      10-06-2003
Hi,
I want to read EDID data using VideoPortInt10 function.

unsigned char EdidBuffer[128];

biosArguments.Eax = 0x4f15;
biosArguments.Ebx = 0x1;
biosArguments.Ecx = 0x0;
biosArguments.Edx = 0x0;
biosArguments.Edi = EdidBuffer; //4'th param
VideoDebugPrint((0," EdidBuffer[0] %x\n",EdidBuffer[0]));

status =VideoPortInt10(HwDeviceExtension, &biosArguments);

if(status==NO_ERROR && (biosArguments.Eax == 0x004f) )
VideoDebugPrint((0," biosArguments.Ax %x\n",biosArguments.Eax));
else
VideoDebugPrint((0," biosArguments.Ax %x\n",biosArguments.Eax));

I am getting successful in Ax = 0x4f.
But I am not able to get any data in EdidBuffer..............


Please help me out in using this function.
How can I read the EDID data.

Regards
 
Reply With Quote
 
 
 
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
DVD RW stopped reading data & music CDs Coogie Windows Vista Hardware 1 11-06-2007 03:37 PM
EDID Prashant Windows Vista File Management 0 10-12-2007 11:25 AM
Reading data off of a CD Kenny D51461 Windows Vista General Discussion 0 10-17-2006 01:08 PM
why is the lsass.exe keeping reading data from my harddrive? hahahahahah Windows Vista General Discussion 4 09-16-2006 07:25 PM
Reading data from USBPRINT stalls the pipe Aspas Windows Vista Drivers 0 07-03-2003 04:02 PM



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59