blob: 45da6131cfc32e3a21e6f8fc3295c59432fd953b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef LIMINEREQUESTS_H_
#define LIMINEREQUESTS_H_
#include <stdint.h>
#include <limine.h>
extern struct limine_stack_size_request stackSizeRequest;
extern struct limine_framebuffer_request framebufferRequest;
bool VerifyBaseRevision(void);
bool VerifyStackSizeRequest(void);
bool VerifyFramebufferRequest(void);
#endif // LIMINEREQUESTS_H_
|