refactor(file structure): seperated files in seperate folders
This commit is contained in:
parent
33936eb001
commit
c091d0dcc4
4 changed files with 3 additions and 3 deletions
|
|
@ -26,7 +26,7 @@
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
|
|
||||||
#include "Error.h"
|
#include "../Utils/Error.h"
|
||||||
|
|
||||||
void *hallocy_malloc(size_t size);
|
void *hallocy_malloc(size_t size);
|
||||||
HallocyError hallocy_free(void *pointer);
|
HallocyError hallocy_free(void *pointer);
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
* Author: Mineplay
|
* Author: Mineplay
|
||||||
* -----------------------------------------------------------------------------
|
* -----------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
#include "../Include/Hallocy/Allocator.h"
|
#include "../../Include/Hallocy/Core/Allocator.h"
|
||||||
|
|
||||||
#if defined(_WIN32)
|
#if defined(_WIN32)
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
* -----------------------------------------------------------------------------
|
* -----------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <Hallocy/Allocator.h>
|
#include <Hallocy/Core/Allocator.h>
|
||||||
|
|
||||||
int main() {
|
int main() {
|
||||||
char *memory = (char *)hallocy_malloc(12288);
|
char *memory = (char *)hallocy_malloc(12288);
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue