about summary refs log tree commit diff stats
path: root/kernel.soso/framebuffer.h
blob: 78575ebbc55718cbdfc0d40606a04fa2ccc25d69 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef FRAMEBUFFER_H
#define FRAMEBUFFER_H

#include "common.h"

enum EnFrameBuferIoctl
{
    FB_GET_WIDTH,
    FB_GET_HEIGHT,
    FB_GET_BITSPERPIXEL
};

void initializeFrameBuffer(uint8* p_address, uint8* v_address);

#endif // FRAMEBUFFER_H