Hooking DLL

  • Thread starter Thread starter pigeonrandle
  • Start date Start date
P

pigeonrandle

Hi,
I want to create a dll in Visual Studio 2003 that is suitable for
hooking thread-specific messages. What sort of project do i need to
create for this?

Many thanks,
James Randle.
 
I want to create a dll in Visual Studio 2003 that is suitable for
hooking thread-specific messages. What sort of project do i need to
create for this?

Probably a class library project.


Mattias
 
OK, thanks!

Do i need to set any additional compliation flags, etc..

Cheers again,
James.
 
Here's something a generous person just found for me!

http://www.thescripts.com/forum/thread284744.html

If you need a native DLL, it's more tricky. You choose New
Project -> Win32 Console Application, click OK, and then read the
options carefully and you should find a radio button in the wizard that
switches to DLL mode. In VC++ 2003 it's pretty much hidden (it took me
a
while to find the first time), in 2005 it's much more visible (use the
Next button in the wizard).
 
The only Class Library project is marked (.NET)!

I assumed you meant C# projects since you're posting in a C#
newsgroup. Silly me.


Mattias
 
Back
Top