Click here to Skip to main content
15,899,679 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: SOCKET_ERROR when calling send method from seperate class Pin
Omar El Fata13-Mar-10 7:08
Omar El Fata13-Mar-10 7:08 
GeneralRe: SOCKET_ERROR when calling send method from seperate class Pin
Omar El Fata13-Mar-10 7:45
Omar El Fata13-Mar-10 7:45 
AnswerRe: SOCKET_ERROR when calling send method from seperate class Pin
krmed13-Mar-10 10:26
krmed13-Mar-10 10:26 
GeneralRe: SOCKET_ERROR when calling send method from seperate class Pin
Omar El Fata13-Mar-10 11:01
Omar El Fata13-Mar-10 11:01 
QuestionWindow class, caption Pin
trioum13-Mar-10 4:26
trioum13-Mar-10 4:26 
AnswerRe: Window class, caption Pin
Eugen Podsypalnikov13-Mar-10 4:34
Eugen Podsypalnikov13-Mar-10 4:34 
GeneralRe: Window class, caption Pin
trioum13-Mar-10 4:43
trioum13-Mar-10 4:43 
GeneralRe: Window class, caption Pin
Eugen Podsypalnikov13-Mar-10 12:58
Eugen Podsypalnikov13-Mar-10 12:58 
QuestionRe: Window class, caption Pin
David Crow13-Mar-10 5:20
David Crow13-Mar-10 5:20 
AnswerRe: Window class, caption Pin
ThatsAlok14-Mar-10 19:21
ThatsAlok14-Mar-10 19:21 
QuestionHow can use VB dll in VC++ code? Pin
Le@rner13-Mar-10 1:45
Le@rner13-Mar-10 1:45 
AnswerRe: How can use VB dll in VC++ code? Pin
LunaticFringe13-Mar-10 2:33
LunaticFringe13-Mar-10 2:33 
AnswerRe: How can use VB dll in VC++ code? Pin
ThatsAlok14-Mar-10 19:24
ThatsAlok14-Mar-10 19:24 
AnswerRe: How can use VB dll in VC++ code? Pin
Shivanand Gupta14-Mar-10 20:30
Shivanand Gupta14-Mar-10 20:30 
QuestionCalling vb dll functions in my vc code Pin
learningvisualc12-Mar-10 21:23
learningvisualc12-Mar-10 21:23 
AnswerRe: Calling vb dll functions in my vc code Pin
Shivanand Gupta13-Mar-10 0:36
Shivanand Gupta13-Mar-10 0:36 
AnswerRe: Calling vb dll functions in my vc code Pin
Shivanand Gupta13-Mar-10 0:51
Shivanand Gupta13-Mar-10 0:51 
QuestionStill problem with a class and function Pin
nah133712-Mar-10 21:20
nah133712-Mar-10 21:20 
AnswerRe: Still problem with a class and function Pin
Richard MacCutchan12-Mar-10 22:12
mveRichard MacCutchan12-Mar-10 22:12 
QuestionRe: Still problem with a class and function Pin
CPallini12-Mar-10 22:37
mveCPallini12-Mar-10 22:37 
AnswerRe: Still problem with a class and function Pin
nah133712-Mar-10 23:55
nah133712-Mar-10 23:55 
because the function that i dissasembled does have void * pointer and it is also __thiscall

Here is how the dissasembled func looks like:
void *__thiscall sub_402355(void *this)
{
  void *v1; // ebx@1
  signed int v2; // edi@1
  void *v3; // esi@1

  v3 = this;
  *(_BYTE *)this = 0;
  v2 = 0;
  v1 = this;
  do
  {
    sub_401462(*((_BYTE *)v3 + v2++ + 188), v1);
    v1 = (char *)v1 + 2;
  }
  while ( v2 < 16 );
  return v3;
}

QuestionRe: Still problem with a class and function Pin
CPallini13-Mar-10 0:00
mveCPallini13-Mar-10 0:00 
AnswerRe: Still problem with a class and function Pin
nah133713-Mar-10 0:02
nah133713-Mar-10 0:02 
GeneralRe: Still problem with a class and function Pin
Richard MacCutchan13-Mar-10 6:50
mveRichard MacCutchan13-Mar-10 6:50 
QuestionRe: Still problem with a class and function Pin
David Crow13-Mar-10 5:23
David Crow13-Mar-10 5:23 

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.