PC MAPI: C Equivalent to MAPI APPEXEC.TXT in MS Visual Basic

Last reviewed: October 10, 1997
Article ID: Q105962
3.00 3.00b 3.20 WINDOWS kbprg kbcode kbtlc

The information in this article applies to:

  • Microsoft Mail for Windows, versions 3.0, 3.0b, and 3.2

SUMMARY

The Microsoft C code fragment below shows how to call application programming interface (API) functions in the APPEXEC.DLL file, which is included on the version 3.0 and 3.2 Microsoft Mail for PC Networks Technical Reference disk, to access the information in the PARAMBLK structure. The APPEXEC.TXT file, which is also included on the Microsoft Mail for PC Networks Technical Reference disk, includes only Microsoft Visual Basic code that calls APPEXEC.DLL.

The steps below describe how to access the PARAMBLK structure. This is also described in the APPEXEC.TXT file. After obtaining the MessageID returned by GetMessageID(), you can use Messaging API (MAPI) from versions 3.0 and 3.2 of Microsoft Mail for PC Networks to access information on the mail message correlating to the MessageID. This program was written using Microsoft Visual C++ version 1.0.

MORE INFORMATION

The code below shows that to access the PARAMBLK structure, your code must do the following:

  1. Obtain the hexadecimal memory handle from the command line of your application.

  2. Convert the hexadecimal handle into an integer.

  3. Call the Windows API GlobalRealloc() function to copy the PARAMBLK structure into your application's memory.

  4. Call the APPEXEC API ReleaseSemaphore() function to tell APPEXEC you have copied the PARAMBLK structure.

  5. Call the APPEXEC API CrackParameterBlock() and GetMessageID() functions to obtain the wCommand and MessageID information from the PARAMBLK structure.

Sample Code Fragment

#include <windows.h>
#include <stdlib.h>
#include <appexec.h>

int PASCAL WinMain( HINSTANCE hinstCurrent, HINSTANCE hinstPrevious,
LPSTR lpCmdLine, int nCmdShow ) {
char    szBuf[ 128 ];
char    szHandle[ 128 ];
DWORD   dw;
BOOL    fVal;
HGLOBAL ghParamBlk;

// procedure to pull messageID

if( *lpCmdLine ) {

 wsprintf( szHandle, "0x%s", lpCmdLine );

 ghParamBlk = (HGLOBAL)strtol( szHandle, '\0', 16 );

 ghParamBlk = GlobalReAlloc( ghParamBlk, 0, GMEM_MODIFY |GMEM_MOVEABLE
      | GMEM_SHARE );

 ReleaseSemaphore();

 fVal = CrackParameterBlock( ghParamBlk, CPB_wCommand, &dw, szBuf );
 if( fVal == 0 )
   goto ErrorStarting;

 fVal = CrackParameterBlock( ghParamBlk, CPB_wMessageIDCount, &dw,
 szBuf);
 if( fVal == 0 || dw != 1 )
   goto ErrorStarting;

 fVal = GetMessageID( ghParamBlk, 0, szBuf );
 if( fVal == 0 )
    goto ErrorStarting;
                  }

else
 goto ErrorStarting;

MessageBox( 0, szBuf, "Message ID", MB_OK ); return 0;

ErrorStarting:

 MessageBox( 0, "Unable to get Message ID", "Error", MB_OK );
 return 1;
}


Additional reference words: 3.00 3.00b 3.20
KBCategory: kbprg kbcode kbtlc
KBSubCategory: MailPCMAPI


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.

Last reviewed: October 10, 1997
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.