Click here to Skip to main content
15,913,296 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: GDI+ image refresh (C++) Pin
Baltoro11-Jan-09 10:55
Baltoro11-Jan-09 10:55 
GeneralRe: GDI+ image refresh (C++) [modified] Pin
Valdyr11-Jan-09 23:28
Valdyr11-Jan-09 23:28 
AnswerRe: GDI+ image refresh (C++) Pin
Mark Salsbery12-Jan-09 7:27
Mark Salsbery12-Jan-09 7:27 
GeneralRe: GDI+ image refresh (C++) Pin
Valdyr12-Jan-09 13:32
Valdyr12-Jan-09 13:32 
GeneralRe: GDI+ image refresh (C++) Pin
Mark Salsbery13-Jan-09 6:43
Mark Salsbery13-Jan-09 6:43 
QuestionRe: GDI+ image refresh (C++) Pin
Valdyr13-Jan-09 2:45
Valdyr13-Jan-09 2:45 
QuestionExecute one instance of application per system Pin
Mohammad Khodaea11-Jan-09 1:51
Mohammad Khodaea11-Jan-09 1:51 
AnswerRe: Execute one instance of application per system Pin
Hamid_RT11-Jan-09 1:58
Hamid_RT11-Jan-09 1:58 
QuestionSetWindowText function error Pin
KARFER11-Jan-09 1:50
KARFER11-Jan-09 1:50 
AnswerRe: SetWindowText function error Pin
Hamid_RT11-Jan-09 1:53
Hamid_RT11-Jan-09 1:53 
GeneralRe: SetWindowText function error Pin
KARFER11-Jan-09 9:44
KARFER11-Jan-09 9:44 
AnswerRe: SetWindowText function error Pin
Stephen Hewitt11-Jan-09 4:11
Stephen Hewitt11-Jan-09 4:11 
QuestionFind All databases in a SQL Server Instance using VC++ 6.0 Pin
unniks10-Jan-09 16:53
unniks10-Jan-09 16:53 
AnswerRe: Find All databases in a SQL Server Instance using VC++ 6.0 Pin
Hamid_RT11-Jan-09 2:01
Hamid_RT11-Jan-09 2:01 
GeneralRe: Find All databases in a SQL Server Instance using VC++ 6.0 Pin
unniks11-Jan-09 5:06
unniks11-Jan-09 5:06 
AnswerRe: Find All databases in a SQL Server Instance using VC++ 6.0 Pin
David Crow12-Jan-09 3:27
David Crow12-Jan-09 3:27 
AnswerRe: Find All databases in a SQL Server Instance using VC++ 6.0 Pin
Member 8157212-Jan-09 22:19
Member 8157212-Jan-09 22:19 
QuestionQuestion about Inject DLL Redirect wsock Pin
VB_Crazy10-Jan-09 16:42
VB_Crazy10-Jan-09 16:42 
<br />
typedef int (WSAAPI *Pconnect)<br />
	(SOCKET s, struct sockaddr *name, int *namelen);<br />
<br />
<br />
int WSAAPI myconnect(SOCKET s, struct sockaddr *name,  int *namelen)<br />
	#define SIN(name) ((struct sockaddr_in *)(name))<br />
{<br />
   struct sockaddr_in *paddr =(struct sockaddr_in *)name;<br />
<br />
   char *ip =inet_ntoa(SIN(name)->sin_addr);<br />
   int port =ntohs(paddr->sin_port);<br />
<br />
		if (port == 101) <br />
			{<br />
				SIN(name)->sin_addr.s_addr  =  0x0100007f;<br />
				return ((Pconnect)hookconnect.pTrampoline)(s, name, namelen);<br />
			}<br />
<br />
	return ((Pconnect)hookconnect.pTrampoline)(s, name, namelen);<br />
}<br />
<br />


I found this function to redirect everytime application try to connect 101 port and connect localhost, but i have to listen same port as the application is, is there a way to edit this function make to connect diff. port?

thank you
AnswerRe: Question about Inject DLL Redirect wsock Pin
Code-o-mat11-Jan-09 8:48
Code-o-mat11-Jan-09 8:48 
GeneralRe: Question about Inject DLL Redirect wsock Pin
VB_Crazy12-Jan-09 0:26
VB_Crazy12-Jan-09 0:26 
GeneralRe: Question about Inject DLL Redirect wsock Pin
Code-o-mat12-Jan-09 0:38
Code-o-mat12-Jan-09 0:38 
AnswerRe: Question about Inject DLL Redirect wsock Pin
VB_Crazy12-Jan-09 22:42
VB_Crazy12-Jan-09 22:42 
QuestionList control ignores FindItem? Pin
nobaq10-Jan-09 10:12
nobaq10-Jan-09 10:12 
AnswerRe: List control ignores FindItem? Pin
Stuart Dootson10-Jan-09 13:52
professionalStuart Dootson10-Jan-09 13:52 
QuestionRe: List control ignores FindItem? Pin
nobaq11-Jan-09 4:41
nobaq11-Jan-09 4:41 

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.