Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 1648 → Rev 1649

/uspace/trunk/fb/ega.h
26,6 → 26,14
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
 
/** @addtogroup egafb
* @brief HelenOS EGA framebuffer.
* @ingroup fbs
* @{
*/
/** @file
*/
 
#ifndef _EGA_H_
#define _EGA_H_
 
32,3 → 40,7
int ega_init(void);
 
#endif
 
/** @}
*/
 
/uspace/trunk/fb/sysio.c
26,6 → 26,14
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
 
/** @defgroup sysio SysIO
* @brief HelenOS framebuffer emulation via kernel.
* @ingroup fbs
* @{
*/
/** @file
*/
 
#include <async.h>
#include <ipc/fb.h>
#include <ipc/ipc.h>
182,3 → 190,8
/* Set scrolling region to 0-25 lines */
sysputs("\033[0;25r");
}
 
/**
* @}
*/
 
/uspace/trunk/fb/fb.c
27,6 → 27,20
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
 
/** @defgroup fbs Framebuffers
* @brief HelenOS framebuffers.
* @{
* @}
*/
/** @defgroup fb Framebuffer
* @brief HelenOS framebuffer.
* @ingroup fbs
* @{
*/
/** @file
*/
 
 
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
1054,3 → 1068,7
return 0;
}
 
 
/**
* @}
*/
/uspace/trunk/fb/sysio.h
26,6 → 26,14
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
 
/** @addtogroup sysio
* @brief HelenOS framebuffer emulation via kernel.
* @ingroup fbs
* @{
*/
/** @file
*/
 
#ifndef _SYSIO_H_
#define _SYSIO_H_
 
32,3 → 40,7
void sysio_init(void);
 
#endif
 
/** @}
*/
 
/uspace/trunk/fb/ega.c
25,6 → 25,16
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
 
/** @defgroup egafb EGA framebuffer
* @brief HelenOS EGA framebuffer.
* @ingroup fbs
* @{
*/
/** @file
*/
 
 
#include <stdlib.h>
#include <unistd.h>
#include <align.h>
352,3 → 362,7
return 0;
}
 
 
/**
* @}
*/
/uspace/trunk/fb/fb.h
26,6 → 26,13
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
 
/** @addtogroup fb
* @ingroup fbs
* @{
*/
/** @file
*/
 
#ifndef _FB_H_
#define _FB_H_
 
32,3 → 39,7
int fb_init(void);
 
#endif
 
/** @}
*/