Click here to Skip to main content
15,899,679 members
Please Sign up or sign in to vote.
1.44/5 (2 votes)
See more:
Hello I'm a little bit nervous about this..
umm
i want to know how i can create a DLL(vcPlayers.dll) that contains some functions for example
this function is on the dll :

void register_user(char *name)
{
printf(name);
INDEX_NAME = len(name);
}


and i have another DLL(vcOnline.dll) that is injected in a game (WildShark.exe)

i want to use that function(register_user) from the DLL(vcOnline.dll), how can i do that?
Posted
Updated 2-Jun-13 3:24am
v3

1 solution

Exporting from a DLL[^]

Hope this helps,
Pablo.
 
Share this answer
 
Comments
Sergey Alexandrovich Kryukov 2-Jun-13 12:22pm    
Fair enough, a 5.
—SA

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900