Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: Public32
  • Content: Threads
  • Order by date
  1. Public32

    Using a DLL function in VC++

    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
  2. Public32

    Pointers and Linklist help

    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){...
  3. Public32

    Dynamic Memory with a 2D Array of Pointers

    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...

Part and Inventory Search

Back
Top