/*****************************************************************************
File: README
*****************************************************************************/

                                                      25.November 1996 



The documentation is pretty short:
==================================

Syntax for the OS/2 messagebox:

   ULONG APIENTRY WinMessageBox(HWND hwndParent,
                                HWND hwndOwner,
                                PSZ pszText,           // aText
                                PSZ pszCaption,        // aTitle
                                ULONG idWindow,
                                ULONG flStyle);


Syntax for the wrapper messageBox:

  // Constructor
  public MsgBox();

  // method
  public native int show(int typeButton,String aTitle,
                               String aText);

To use the messagebox wrapper you need the MsgBox.class and the MsgBox.DLL.

The Styles and return codes are documented in 'PMWIN.H' and in MsgBox.h.

___________________________________________________________________________

This archive is Public Domain.
You may use all the files in non-commercial and commercial software
products.

If you intend to use MsgBox.class and MsgBox.DLL included in this archive
in a software product, I would like you to send me an e-mail.

Author: Henrik Falk
        2:236/89@fidonet.org
        81:445/16@os2net.ftn
        hfalk@ibm.net

/*
End of: README
*/