repo.or.cz
/
kolibrios.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[docs] Replace cyrillic 'с' with latin 'c' in register names
[kolibrios.git]
/
programs
/
other
/
graph
/
MCSMEMM.H
blob
42d61eaadb651c53b8682c6b93c9ab561a12090c
1
//
\r
2
\r
3
struct MemBlock
\r
4
{
\r
5
Dword Size;
\r
6
Dword Addr;
\r
7
MemBlock *Next;
\r
8
MemBlock *Previous;
\r
9
};
\r
10
\r
11
\r
12
#define INITIALQUEUESIZE (32 * 4)
\r
13
\r
14
#define FALSE 0
\r
15
#define TRUE -1
\r
16
\r
17
#define MB_FREE 0
\r
18
#define MB_USER 1
\r
19
\r
20
#define SIZE_ALIGN 4
\r
21
\r
22
\r
23
\r
24
Byte *allocmem( Dword reqsize );
\r
25
Dword freemem( void *vaddress );
\r
26
\r
27
\r
28
\r