-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6943fc5
commit 24a17d0
Showing
8 changed files
with
50 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
/* * * * * * * *\ | ||
MEMMGMT.C - | ||
Copyright (c) 2023 Vortesys | ||
DESCRIPTION - | ||
Program Manager's memory management functions | ||
LICENSE INFORMATION - | ||
MIT License, see LICENSE.txt in the root folder | ||
\* * * * * * * */ | ||
|
||
/* Headers */ | ||
#include "memmgmt.h" | ||
// #define WIN32_LEAN_AND_MEAN | ||
#include <Windows.h> | ||
|
||
/* Variables */ | ||
|
||
/* Functions */ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/* * * * * * * *\ | ||
MEMMGMT.H - | ||
Copyright (c) 2023 Vortesys | ||
DESCRIPTION - | ||
Header containing the functions and variables | ||
related to Program Manager's memory management. | ||
LICENSE INFORMATION - | ||
MIT License, see LICENSE.txt in the root folder | ||
\* * * * * * * */ | ||
|
||
/* Pragmas */ | ||
#pragma once | ||
|
||
/* Includes */ | ||
#include <wtypes.h> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters