Search Results

0
votes
3answers
56 views

Reconnect to Process Started Via COM

First, I'd like to note that I need to use the COM/OLE2 APIs, the low level stuff, the stuff you can put in a C Windows Console program. I can't use MFC. I can't use .NET. My question is: …
3
votes

linked list

Arguably you want your list data structure to be external to the data that it stores. Say you have: struct Whatever { int x_; } Then your list structure would look …