WINDOWS kbprg kbcode The information in this article applies to:
SUMMARYThe Windows NT help system can call custom DLLs at specific times while viewing specific help files. In Windows 3.1 and Windows NT on 80x86 architectures, the DLL is called with the _pascal calling convention. MORE INFORMATION
On the MIPS and PowerPC architectures, Windows NT 3.1 and 3.5 use a
workaround because the architectures use a register calling convention:
they pass four (for the MIPS) or eight (for the PowerPC) dummy arguments
followed by the actual arguments. For example, on the 80x86 you might do:
On the MIPS, you would employ the dummy argument workaround, and do:
Use these macros if you want your function declarations to be portable between various NT architectures: #if defined(_MIPS_) #define XR1STARGDEF int dummy1, int dummy2, int dummy3, int dummy4, #define XR1STARGREF 1,2,3,4, #elif defined(_PPC_) #define XR1STARGDEF int d1,int d2,int d3,int d4,int d5,int d6,int d7,int d8, #define XR1STARGREF 1,2,3,4,5,6,7,8, #else #define XR1STARGDEF #define XR1STARGREF #endif abc.dll implementation:
If another C routine calls your DLL function, use:
Additional query words: prodnt powerpc ppc
Keywords : |
Last Reviewed: February 5, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |