hi,, all...
i'm new here...
i'm trying to make an application such as magictune of portrait
displays...
i plant a micro controller in the display.. that is configured i2c
slave device..
connect pin 12, 15 of vga cable to the mcu..
i'm trying to send some simple data to the mcu...
i'm using vc++ 6.0
i found that i need video.h from msdn..
so,, i got windows ddk suite 3.0 and installed it..
the header file, video.h is in
C:\WINDDK\3790\inc\ddk\wxp
and in vc++ 6.0,,
tools -> options..., directories tab..
i put above directory in the list of "include files" section..
then i put
// some header files
#include <video.h>
// some header files
and tried to compile..
then i got 102 errors that all of them came from video.h and videoagp.h
that are newly included headers..
did i do something wrong to configure building environment?
is there some special thing to do in order to compile ddk headers?
thank you very much...
best regards,
/u
---------------
--------------------Configuration: VWCtrl - Win32
Debug--------------------
Compiling...
VWCtrlDlg.cpp
c:\winddk\3790\inc\ddk\wxp\videoagp.h(35) : error C2065:
'PAGP_RESERVE_PHYSICAL' : undeclared identifier
c:\winddk\3790\inc\ddk\wxp\videoagp.h(35) : error C2100: illegal
indirection
c:\winddk\3790\inc\ddk\wxp\videoagp.h(35) : error C2501:
'PHYSICAL_ADDRESS' : missing storage-class or type specifiers
c:\winddk\3790\inc\ddk\wxp\videoagp.h(35) : error C2143: syntax error :
missing ';' before '('
c:\winddk\3790\inc\ddk\wxp\videoagp.h(36) : error C2226: syntax error :
unexpected type 'PVOID'
c:\winddk\3790\inc\ddk\wxp\videoagp.h(40) : error C2059: syntax error :
')'
.
.
.
c:\winddk\3790\inc\ddk\wxp\video.h(1500) : error C2146: syntax error :
missing ';' before identifier 'InterfaceReference'
c:\winddk\3790\inc\ddk\wxp\video.h(1500) : error C2501:
'PINTERFACE_REFERENCE' : missing storage-class or type specifiers
c:\winddk\3790\inc\ddk\wxp\video.h(1500) : fatal error C1003: error
count exceeds 100; stopping compilation
Error executing cl.exe.
VWCtrl.exe - 102 error(s), 0 warning(s)
---------------