i have a problem with using the parallel port to output signal to control devices or to receive data .
i know that winxp restrict access to the port, so i downloaded the inpout32.dll and i put it in the system32 folder then i used the inport ,outport functions but still there is no response from the port.
so i need to be guided what to do?

Recommended Answers

All 4 Replies

Use a compiler that is matched to your OS perhaps?

Seriously, just because the compatibility layer makes simple "hello world" programs work for these fossil compilers doesn't mean you can then use them to go rummaging through the dark corners of the system with impunity.

Judging from some other recent threads, Win7 simply tells you to take a hike if you try to use crusty old Turbo C.

Do you want to wait that long before being forced into an upgrade, or take the time now and make a big step forward.

Also, your description is pretty meaningless without code.

#include "stdafx.h"
#include "stdio.h"
#include "string.h"
#include "stdlib.h"
#include "conio.h"
/* ----Prototypes of Inp and Outp--- */

short _stdcall Inp32(short PortAddress);
void _stdcall Out32(short PortAddress, short data);

/*--------------------------------*/

int main(void)
{
    Out32(0x37a,32);
    int data;
    data=Inp32(0x378);
    printf("\n data read is %d",data);
    Out32(0x378,25);
    printf("\n data out is 25");
    data=Inp32(0x378);
    printf("\n data read is %d",data);
    /*
    if(argc<3)
    {
        //too few command line arguments, show usage
        printf("Error : too few arguments\n\n***** Usage *****\n\nInpoutTest read <ADDRESS> \nor \nInpoutTest write <ADDRESS> <DATA>\n\n\n\n\n");
    } 
    else if(!strcmp(argv[1],"read"))
    {

        data = Inp32(atoi(argv[2]));

        printf("Data read from address %s is %d \n\n\n\n",argv[2],data);

    }
    else if(!strcmp(argv[1],"write"))
    {
        if(argc<4)
        {
            printf("Error in arguments supplied");
            printf("\n***** Usage *****\n\nInpoutTest read <ADDRESS> \nor \nInpoutTest write <ADDRESS> <DATA>\n\n\n\n\n");
        }
        else
        {
        Out32(atoi(argv[2]),atoi(argv[3]));
        printf("data written to %s\n\n\n",argv[2]);
        }
    }
*/

getch();
    return 0;
}

this is the source file ,i tried to execute it in visual c++ and the error message informing that privileged instruction.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.