Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygentscroll.h
Go to the documentation of this file.
00001 #pragma once 00002 00003 #include "tconsole.h" 00004 #include "tmouse.h" 00005 00006 typedef int(stripfunc)(char *, char *, int); 00007 00008 class TScroller { 00009 private: 00010 char *pcScrollData; 00011 long iScrollSize; 00012 long iScrollEnd; 00013 int iPastEnd; 00014 int iDisplay; 00015 stripfunc *strip; 00016 TMouse &Mouse; 00017 public: 00018 void init(stripfunc *s); 00019 void update(const char *pszBegin, const char *pszEnd); 00020 void ScrollBack(); 00021 TScroller(TMouse &M, int size=20000); 00022 ~TScroller(); 00023 }; Generated on Fri May 25 2012 04:15:34 for ReactOS by
1.7.6.1
|