(*******************************************************************************
*                                                                              *
* OTA - How to create and add new menu item to Delphi IDE                      *
*                                                                              *
* Tested with Delphi 5.01                                                      *
* Last modified: 2000-08-24                                                    *
*                                                                              *
* Author: Miha Remec                                                           *
* E-mail: mail@miharemec.com                                                   *
* WWW: http://www.miharemec.com/doc/ota-nmi.html                               *
*                                                                              *
*                                                                              *
* Free for personal and commercial use. No rights reserved. May be freely      *
* modified and abused.                                                         *
*                                                                              *
* This software is provided 'as-is', without any express or implied warranty.  *
* In no event will the author be held liable for any damages arising from      *
* the use of this software.                                                    *
*                                                                              *
* Permission is granted to anyone to use this software for any purpose,        *
* including commercial applications, and to alter it and redistribute it       *
* freely.                                                                      *
*******************************************************************************)
package otanmi;

{$R *.res}
{$ALIGN 8}
{$ASSERTIONS OFF}
{$BOOLEVAL OFF}
{$DEBUGINFO OFF}
{$EXTENDEDSYNTAX ON}
{$IMPORTEDDATA ON}
{$IOCHECKS ON}
{$LOCALSYMBOLS OFF}
{$LONGSTRINGS ON}
{$OPENSTRINGS ON}
{$OPTIMIZATION ON}
{$OVERFLOWCHECKS OFF}
{$RANGECHECKS OFF}
{$REFERENCEINFO OFF}
{$SAFEDIVIDE OFF}
{$STACKFRAMES OFF}
{$TYPEDADDRESS OFF}
{$VARSTRINGCHECKS ON}
{$WRITEABLECONST OFF}
{$MINENUMSIZE 1}
{$IMAGEBASE $50000000}
{$DESCRIPTION 'OTA - How to create and add new menu item to Delphi IDE'}
{$DESIGNONLY}
{$IMPLICITBUILD OFF}

requires
  vcl,
  designide;

contains
  otanmi_main in 'otanmi_main.pas';

end.
