home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1995 June / MacFormat 25.iso / Shareware City / Developers / OutOfPhase1.1 Source / OutOfPhase Folder / Level 1 Extensions 04Jan95 / WrapTextBox.h < prev   
Encoding:
C/C++ Source or Header  |  1994-01-21  |  498 b   |  22 lines  |  [TEXT/KAHL]

  1. /* WrapTextBox.h */
  2.  
  3. #ifndef Included_WrapTextBox_h
  4. #define Included_WrapTextBox_h
  5.  
  6. /* WrapTextBox module depends on: */
  7. /* MiscInfo.h */
  8. /* Audit */
  9. /* Debug */
  10. /* Definitions */
  11. /* Memory */
  12. /* Screen */
  13. /* DataMunging */
  14.  
  15. #include "Screen.h"
  16.  
  17. /* draw a string but wordwrap it in the specified box.  The string is null terminated */
  18. void            DrawWrappedTextBox(WinType* Window, char* Text, FontType FontID,
  19.                         FontSizeType FontSize, OrdType X, OrdType Y, OrdType Width, OrdType Height);
  20.  
  21. #endif
  22.