home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / vc98 / mfc / src / inetcall.cpp < prev    next >
C/C++ Source or Header  |  1998-06-16  |  3KB  |  86 lines

  1. // This is a part of the Microsoft Foundation Classes C++ library.
  2. // Copyright (C) 1992-1998 Microsoft Corporation
  3. // All rights reserved.
  4. //
  5. // This source code is only intended as a supplement to the
  6. // Microsoft Foundation Classes Reference and related
  7. // electronic documentation provided with the library.
  8. // See these sources for detailed information regarding the
  9. // Microsoft Foundation Classes product.
  10.  
  11. #ifdef _AFXDLL
  12. #include "stdafx.h"
  13. #endif
  14. #include <afxisapi.h>
  15.  
  16. // Note: because of the nature of these functions, it is not possible
  17. //  to create a 'C' or 'C++' version of them.  These functions are used
  18. //  for the lowest level of the OLE IDispatch implementation, and need
  19. //  to be ported to each supported platform.
  20.  
  21. extern "C" {
  22.  
  23. /////////////////////////////////////////////////////////////////////////////
  24. // Intel 386 version
  25.  
  26. #ifdef _X86_
  27.  
  28. #ifdef AFX_INET_SEG
  29. #pragma code_seg(AFX_INET_SEG)
  30. #endif
  31.  
  32. __declspec(naked) void AFXISAPI
  33. _AfxParseCall(AFX_PISAPICMD /*pfn*/, void* /*pArgs*/, UINT /*nSizeArgs*/)
  34. {
  35.     _asm
  36.     {
  37.         pop     edx         // edx = return address
  38.         pop     eax         // eax = pfn
  39.         pop     ecx         // ecx = pArgs
  40.         add     ecx,[esp]   // ecx += nSizeArgs (=scratch area)
  41.         mov     [ecx],edx   // scratch[0] = return address
  42.         sub     ecx,[esp]   // ecx = pArgs (again)
  43.         mov     esp,ecx     // esp = pArgs (usually already correct)
  44.         pop     ecx         // ecx = this pointer (the CCmdTarget*)
  45.         call    eax         // call member function
  46.         ret                 // esp[0] should = scratch[0] = return address
  47.     }
  48. }
  49. #endif // _X86_
  50.  
  51. /////////////////////////////////////////////////////////////////////////////
  52. // MIPS R4000 version
  53.  
  54. #ifdef _MIPS_
  55.  
  56. extern "C" void _asm(char *, ...);
  57. void AFXISAPI
  58. _AfxParseCall(AFX_PMSG /*pfn*/, void* /*pArgs*/, UINT /*nSizeArgs*/)
  59. {
  60.     _asm("addiu     %sp,%a1,0x0");      // sp = pArgs
  61.     _asm("addiu     %t6,%a0,0x0");      // t6 = pfn (save it)
  62.     _asm("lw        %a0,0x0(%sp)");     // a0 = param0
  63.     _asm("lw        %a1,0x4(%sp)");     // a1 = param1
  64.     _asm("lw        %a2,0x8(%sp)");     // a2 = param2
  65.     _asm("lw        %a3,0xc(%sp)");     // a3 = param3
  66.     _asm("j         %t6");              // ip = pfn (jump to target function)
  67. }
  68.  
  69. #endif // _MIPS_
  70.  
  71. /////////////////////////////////////////////////////////////////////////////
  72. // DEC Alpha AXP version
  73.  
  74. #ifdef _ALPHA_
  75.  
  76. // Note: ALPHA version is in src\alpha\inetcal_.s
  77.  
  78. // The ALPHA compiler does not support inline assembly, so it
  79. //  must be build separately with the ASAXP assembler.
  80.  
  81. #endif // _ALPHA_
  82.  
  83. } // end extern "C" block
  84.  
  85. /////////////////////////////////////////////////////////////////////////////
  86.