I'm building a project, which is set to create a dll, and it's producing LNK2019 linking errors. ie it can't find dependencies. I thought that when you built a library you didn't need to provide it...
I have cleverly discovered what "link library dependencies" is all about. I think it means "link against project dependencies". Are Microsoft good at misleading people?
you miss the point of my statement "if I build app P against A, it will only do so successfully if project A knows about B's library files." To make it clearer for you, perhaps I should state it...
b is what I'm aiming for. I seem to have achieved this, but I'd like confirmation that I'm doing it the right way: how do I build A.lib so as it copies everything it needs from B?
i) if I tell project A where B's library files are, it produces an A.lib file which is bigger
ii) if I build app P against A, it will only do so successfully if project A knows about B's library...
Hi folks,
I'm building a library A which calls functions in library B. A depends on B.
I'm making an application P which calls functions in library A. That is, P depends on A. I want to arrange...
Hi folks,
how do you get windows to show you the security info of a process? If you right-click properties on a process in task manager it helpfully shows you the security details of the file, not...
Hi folks,
Can someone tell me what I need to do to enumerate the subkeys of a registry key? Is there a special privilege for this which overrides the dacl or do I need to put an entry in the dacl...
Trying to define a pointer to a 2d array which has a stride of 8.
If I know that my doubles are in a consecutive memory block at location p, and the stride is 8, then the notations