Hi,
I am somewhat new to pragramming in Windows and I want to know how I can use a dll in a c++ program. for instance if I was to use a function that is in c:\windows\system32\advapi32.dll
how do I include it in the project.? and then how do I call a function in that dll.
Thanks In advance.
S
Hi
I have the following code:
struct node{
int ID;
bool connected;
int *connectedTo[50];
int numConnectedTo;
int numMsgsRecieved;
int overwhelmed[20][20];
node *nxtNode;
};
void main(){
.
.
.
}
void createNetwork(node *headNode){...
I need to create a "Table" (2D array) whose instance are lookup tables of directories. Each table entry will consist of two strings of NO fixed length: a key, which is what we are looking up, and a value, which is what we are trying to find. For example, if our table represents a...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.