• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Plik w source

BugaS

Donżuan
Joined
Mar 12, 2009
Messages
1,219
Reaction score
9
Location
NYC
Siema. W jakim pliku w sourcach jest linijka odpowiedzialna od sprawdzania dll-ek i ich uruchomienia?
 
Jak masz swojego dll'ka:
Code:
typedef void (*Twoja_Funkcja)(/*argumenty*/);
Twoja_Funkcja funkcja;

HINSTANCE hInst = LoadLibrary("Twoj_DLLEK.dll");
funkcja = (Twoja_Funkcja)GetProcAddress(hInst, "Funkcja_z_DLL");
funkcja(/* argumenty */);

Jakoś tak to leciało.

Pozdrawiam, Czepek!
 
Back
Top