home *** CD-ROM | disk | FTP | other *** search
- /* tmsg.h -- text message area */
-
- /*
- Copyright (c) 1989 Commodore-Amiga, Inc.
-
- Executables based on this information may be used in software
- for Commodore Amiga computers. All other rights reserved.
- This information is provided "as is"; no warranties are made.
- All use is at your own risk, and no liability or responsibility
- is assumed.
- */
-
- struct TextMsg {
- struct TextMsg *tm_Next;
- WORD tm_Left;
- WORD tm_Top;
- WORD tm_LimitWidth; /* clip to limits */
- WORD tm_BufSize;
- UBYTE *tm_Buffer;
-
- /* buffers come after this */
- };
-