DOCUMENT:Q120737 08-AUG-2001 [winnt] TITLE :Winhlp32 & Custom DLL Calling Conventions PRODUCT :Microsoft Windows NT PROD/VER: OPER/SYS: KEYWORDS: ====================================================================== 3.50 WINDOWS kbprg kbcode ------------------------------------------------------------------------------- The information in this article applies to: - Microsoft Windows NT Workstation version 3.5 - Microsoft Windows NT Server version 3.5 ------------------------------------------------------------------------------- SUMMARY ======= The 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: abc.hpj [CONFIG] section: RegisterRoutine( "abc", "MyFunction", "UI" ) abc.hlp macro call:
MyFunction( hwndApp, 2 ) abc.dll implementation: void MyFunction( HWND hwndApp, int i ) { if( i == 3 ) .... } On the MIPS, you would employ the dummy argument workaround, and do: abc.hpj [CONFIG] section: RegisterRoutine( "abc", "MyFunction", "UI" ) abc.hlp macro call: MyFunction( hwndApp, 2 ) abc.dll implementation: void MyFunction( int d1, int d2, int d3, int d4, HWND hwndApp, int i ) { if( i == 3 ) .... } 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: void MyFunction( XR1STARGDEF HWND hwndApp, int i ) { if( i == 3 ) .... } If another C routine calls your DLL function, use: MyFunction( XR1STARGREF hwnd, 33 ); Additional query words: prodnt powerpc ppc ====================================================================== Keywords : Technology : kbWinNTsearch kbWinNTWsearch kbWinNT350search kbWinNTW350 kbWinNTW350search kbWinNTSsearch kbWinNTS350 kbWinNTS350search ============================================================================= THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY. Copyright Microsoft Corporation 2001.