Click here to Skip to main content
15,888,454 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
Questiondebugging sprintf -VS/C++ Pin
Alan Kurlansky4-Aug-10 5:07
Alan Kurlansky4-Aug-10 5:07 
AnswerRe: debugging sprintf -VS/C++ Pin
Aescleal4-Aug-10 5:29
Aescleal4-Aug-10 5:29 
AnswerRe: debugging sprintf -VS/C++ Pin
Moak5-Aug-10 2:41
Moak5-Aug-10 2:41 
QuestionHow to create a dll wrapper Pin
VentsyV4-Aug-10 4:11
VentsyV4-Aug-10 4:11 
AnswerRe: How to create a dll wrapper Pin
Phil J Pearson4-Aug-10 4:31
Phil J Pearson4-Aug-10 4:31 
JokeRe: How to create a dll wrapper Pin
Sauro Viti4-Aug-10 4:38
professionalSauro Viti4-Aug-10 4:38 
GeneralRe: How to create a dll wrapper Pin
VentsyV4-Aug-10 5:33
VentsyV4-Aug-10 5:33 
GeneralRe: How to create a dll wrapper Pin
Aescleal4-Aug-10 5:55
Aescleal4-Aug-10 5:55 
Ah ha, just seen one point of confusion you've got...

When you produce a DLL you can produce something called an import library. This is nothing like an ordinary static library (although you can add object files to it if you want) but essentially just a lump of data describing the functions exported from the DLL - essentially just the function's names and position in the exported function table. They don't contain any code.

So if you link with a DLLs import library then all that means is that the corresponding DLL will be automatically loaded when the program starts and the loader can fixup the addresses of the imported functions.

Cheers,

Ash
GeneralRe: How to create a dll wrapper Pin
VentsyV4-Aug-10 6:09
VentsyV4-Aug-10 6:09 
AnswerRe: How to create a dll wrapper Pin
Aescleal4-Aug-10 5:02
Aescleal4-Aug-10 5:02 
GeneralRe: How to create a dll wrapper Pin
VentsyV4-Aug-10 5:31
VentsyV4-Aug-10 5:31 
GeneralRe: How to create a dll wrapper Pin
Aescleal4-Aug-10 5:47
Aescleal4-Aug-10 5:47 
GeneralRe: How to create a dll wrapper Pin
VentsyV4-Aug-10 6:11
VentsyV4-Aug-10 6:11 
GeneralRe: How to create a dll wrapper Pin
Aescleal4-Aug-10 7:54
Aescleal4-Aug-10 7:54 
AnswerRe: How to create a dll wrapper Pin
Shivanand Gupta5-Aug-10 0:40
Shivanand Gupta5-Aug-10 0:40 
Questioncompile file exe Pin
albertodiprima4-Aug-10 3:51
albertodiprima4-Aug-10 3:51 
AnswerRe: compile file exe Pin
Cedric Moonen4-Aug-10 3:57
Cedric Moonen4-Aug-10 3:57 
GeneralRe: compile file exe Pin
albertodiprima4-Aug-10 4:05
albertodiprima4-Aug-10 4:05 
AnswerRe: compile file exe Pin
Sauro Viti4-Aug-10 3:59
professionalSauro Viti4-Aug-10 3:59 
GeneralRe: compile file exe Pin
albertodiprima4-Aug-10 4:23
albertodiprima4-Aug-10 4:23 
GeneralRe: compile file exe Pin
Sauro Viti4-Aug-10 4:33
professionalSauro Viti4-Aug-10 4:33 
GeneralRe: compile file exe Pin
albertodiprima4-Aug-10 4:45
albertodiprima4-Aug-10 4:45 
GeneralRe: compile file exe Pin
Sauro Viti4-Aug-10 4:53
professionalSauro Viti4-Aug-10 4:53 
GeneralRe: compile file exe Pin
albertodiprima4-Aug-10 4:57
albertodiprima4-Aug-10 4:57 
AnswerRe: compile file exe Pin
Sauro Viti4-Aug-10 5:09
professionalSauro Viti4-Aug-10 5:09 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.