home *** CD-ROM | disk | FTP | other *** search
- #pragma once
- /*****
- *
- * MenuEdit.h
- *
- * This is a support file for "Grant's CGI Framework".
- * Please see the license agreement that accompanies the distribution package
- * for licensing details.
- *
- * Copyright ©1995,1996 by Grant Neufeld
- * grant@acm.com
- * http://arpp.carleton.ca/grant/
- *
- *****/
-
- #include "WindowInt.h"
-
- /*** MENU ITEM CONSTANTS ***/
-
- #define kmiUndo 1
- #define kmiCut 3
- #define kmiCopy 4
- #define kmiPaste 5
- #define kmiClear 6
- #define kmiSelectAll 7
-
-
- /*** FUNCTION PROTOTYPES ***/
-
- void doEditMenu ( short, short );
- void adjustEditMenu ( window_type );
-
-
- /***** EOF *****/
-