Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

49 lines
1.2 KiB

  1. /* File: D:\WACKER\tdll\update.h (Created: 09-Dec-1993)
  2. *
  3. * Copyright 1994 by Hilgraeve Inc. -- Monroe, MI
  4. * All rights reserved
  5. *
  6. * $Revision: 1 $
  7. * $Date: 10/05/98 12:40p $
  8. */
  9. #if !defined(INCL_HUPDATE)
  10. #define INCL_HUPDATE
  11. // Function prototypes...
  12. HUPDATE updateCreate (const HSESSION);
  13. void updateDestroy (const HUPDATE hUpdate);
  14. void updateScroll (const HUPDATE hUpdate,
  15. const int yBeg,
  16. const int yEnd,
  17. const int iScrlInc,
  18. const int iTopRow,
  19. const BOOL fSave
  20. );
  21. void updateLine (const HUPDATE hUpdate,
  22. const int yBeg,
  23. const int yEnd
  24. );
  25. void updateChar (const HUPDATE hUpdate,
  26. const int yPos,
  27. const int xBegPos,
  28. const int xEndPos
  29. );
  30. void updateCursorPos (const HUPDATE hUpdate,
  31. const int sRow,
  32. const int sCol
  33. );
  34. int updateSetReallocFlag(const HUPDATE hUpdate, const BOOL fState);
  35. BOOL updateIsLocked (const HUPDATE hUpdate);
  36. int updateSetLock (const HUPDATE hUpdate, const BOOL fState);
  37. int updateSetScrlMax (const HUPDATE hUpdate, const int iScrlMax);
  38. void updateBackscroll (const HUPDATE hUpdate, const int iLines);
  39. #endif