Hi <br>
<br>
I need to include a .dll (inpout32.dll) file that controls parallel
port access under winXP, into my VLC build. I have tried to add the
line <br>
VLC_ADD_LDFLAGS([inpout32]) <br>
to the <a href="http://configure.ac">configure.ac</a> file<br>
and in my module I have declared the function prototypes<br>
<br>
short _stdcall Inp32(short PortAddress);<br>
void _stdcall Out32(short PortAddress, short data);<br>
<br>
and have add the call <br>
<br>
Out32(888,0);<br>
<br>
to my modules function. Unfortunately when I reconfigure it has no errors but when I make I get the error <br>
<span class="main-span" id="text"><font style="background: rgb(255, 255, 255) none repeat scroll 0% 50%; -moz-background-clip: initial; -moz-background-origin: initial; -moz-background-inline-policy: initial;" color="#000000">
<br>
undefined refrence to Out32(888,0)<br>
<br>
can anyone tell me what I'm doing wrong?<br>
or How to include parallel port access into VLC<br>
<br>
Thanx<br>
Adam<br>
</font></span>