Ĺadny brzuch
Więc sprawa wygląda tak.
oto funkcja do ładowania z dll
void portLPT::ladujout() { uchwytLib = LoadLibrary(TEXT("inpout32.dll")); if(uchwytLib != NULL ) { wyjscie = (WYJ) GetProcAddress(uchwytLib, (LPCSTR)"Out32"); if(wyjscie == NULL) { std::cout<<std::string(79, '!')<<std::endl; std::cout<<"Blad we wczytywaniu funkcji wyjsciowej !!" <<std::endl<<"Za 5 sec nastapi zamkniecie programu !! Skontaktuj sie z obsluga techniczna !"<<std::endl <<std::string(79, '!')<<std::endl; Sleep(5000); exit(1); } } else { std::cout<<std::string(79, '!')<<std::endl; std::cout<<"Blad we wczytywaniu funkcji wyjsciowej !!" <<std::endl<<"Za 5 sec nastapi zamkniecie programu !! Skontaktuj sie z obsluga techniczna !"<<std::endl <<std::string(79, '!')<<std::endl; Sleep(5000); exit(1); } std::cout<<"!!!!!!!!!!ZALADOWANO POPRAWNIE!!!!!!!!"<<std::endl; //Sleep(1500); }
to są zmienne
typedef void (*WYJ)(int, int); typedef int (*WEJ) (int); HINSTANCE uchwytLib; BOOL freeLib; enum Adres {DATA = 888, CONTROL = 890}; WYJ wyjscie; WEJ wejscie;
a tak wywołuję funkcję
LPT.wyjscie(LPT.DATA, 255);
problem wygląda tak że po linijce wywołania LPT.wyjscie(LPT.DATA, 255); wywala mi błąd taki KLIK
podejrzewam że to coś właśnie że źle są zaimportowane funkcje z tego dll
btw kod ładowania funkcji z C#
public class PortAccess { /* For sending to the ports */ [DllImport("inpout32.dll", EntryPoint="Out32")] public static extern void Output(int adress, int value); /* For receiving from the ports */ [DllImport("inpout32.dll", EntryPoint="Inp32")] public static extern int Input(int adress); }
Użytkownik Edas edytował ten post 14 wrzesień 2006, 21:03
zanotowane.pl doc.pisz.pl pdf.pisz.pl zsf.htw.pl
oto funkcja do ładowania z dll
void portLPT::ladujout() { uchwytLib = LoadLibrary(TEXT("inpout32.dll")); if(uchwytLib != NULL ) { wyjscie = (WYJ) GetProcAddress(uchwytLib, (LPCSTR)"Out32"); if(wyjscie == NULL) { std::cout<<std::string(79, '!')<<std::endl; std::cout<<"Blad we wczytywaniu funkcji wyjsciowej !!" <<std::endl<<"Za 5 sec nastapi zamkniecie programu !! Skontaktuj sie z obsluga techniczna !"<<std::endl <<std::string(79, '!')<<std::endl; Sleep(5000); exit(1); } } else { std::cout<<std::string(79, '!')<<std::endl; std::cout<<"Blad we wczytywaniu funkcji wyjsciowej !!" <<std::endl<<"Za 5 sec nastapi zamkniecie programu !! Skontaktuj sie z obsluga techniczna !"<<std::endl <<std::string(79, '!')<<std::endl; Sleep(5000); exit(1); } std::cout<<"!!!!!!!!!!ZALADOWANO POPRAWNIE!!!!!!!!"<<std::endl; //Sleep(1500); }
to są zmienne
typedef void (*WYJ)(int, int); typedef int (*WEJ) (int); HINSTANCE uchwytLib; BOOL freeLib; enum Adres {DATA = 888, CONTROL = 890}; WYJ wyjscie; WEJ wejscie;
a tak wywołuję funkcję
LPT.wyjscie(LPT.DATA, 255);
problem wygląda tak że po linijce wywołania LPT.wyjscie(LPT.DATA, 255); wywala mi błąd taki KLIK
podejrzewam że to coś właśnie że źle są zaimportowane funkcje z tego dll
btw kod ładowania funkcji z C#
public class PortAccess { /* For sending to the ports */ [DllImport("inpout32.dll", EntryPoint="Out32")] public static extern void Output(int adress, int value); /* For receiving from the ports */ [DllImport("inpout32.dll", EntryPoint="Inp32")] public static extern int Input(int adress); }
Użytkownik Edas edytował ten post 14 wrzesień 2006, 21:03