home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1995 March / macformat-022.iso / Shareware City / Developers / src / out-of-phase-102-c / OutOfPhase 1.02 Source / OutOfPhase Folder / Level 1 Extensions 29Sep94 / WrapTextBox.h < prev   
Encoding:
C/C++ Source or Header  |  1994-11-23  |  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.