about summary refs log tree commit diff stats
path: root/kernel.soso/framebuffer.h
blob: 0606712adf35c75c494aa26551d52d667388f04c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#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