-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsmem.pp
32 lines (22 loc) · 847 Bytes
/
smem.pp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// vim: ts=3:filetype=pascal
(* Copyright (C) 2004-2009 Oleksandr Natalenko aka post-factum
This program is free software; you can redistribute it and/or modify
it under the terms of the Universal Program License as published by
Oleksandr Natalenko aka post-factum; see file COPYING for details.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
You should have received a copy of the Universal Program
License along with this program; if not, write to
pfactum@gmail.com *)
{$MODE OBJFPC}
{$SMARTLINK OFF}
library
smem;
procedure GetMemMan(out MemMan: TMemoryManager); stdcall; export;
begin
GetMemoryManager(MemMan);
end;
exports
GetMemMan name 'GetSharedMemoryManager';
end.