comparison dstep/coreservices/carboncore/LowMem.d @ 11:07194b026fa4

Added bindings to a couple of frameworks, new license + some other things
author Jacob Carlborg <doob@me.com>
date Sat, 01 Aug 2009 15:03:28 +0200
parents
children
comparison
equal deleted inserted replaced
10:27e00625790b 11:07194b026fa4
1 /**
2 * Copyright: Copyright (c) 2009 Jacob Carlborg.
3 * Authors: Jacob Carlborg
4 * Version: Initial created: Jul 21, 2009
5 * License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost Software License 1.0)
6 */
7 module dstep.coreservices.carboncore.LowMem;
8
9 //import dstep.AvailabilityMacros;
10 import dstep.coreservices.carboncore.Files;
11 import dstep.coreservices.carboncore.MacMemory;
12 import dstep.coreservices.carboncore.MacTypes;
13 import dstep.coreservices.carboncore.OSUtils;
14 import dstep.coreservices.carboncore.Resources;
15
16 extern (C)
17 {
18 short LMGetBootDrive ();
19 void LMSetBootDrive (short value);
20 short LMGetApFontID ();
21 void LMSetApFontID (short value);
22 short LMGetSysMap ();
23 void LMSetSysMap (short value);
24 ubyte LMGetResLoad ();
25 void LMSetResLoad (ubyte value);
26 short LMGetResErr ();
27 void LMSetResErr (short value);
28 ubyte LMGetTmpResLoad ();
29 void LMSetTmpResLoad (ubyte value);
30 char* LMGetIntlSpec ();
31 void LMSetIntlSpec (char* value);
32 void LMSetSysFontFam (short value);
33 short LMGetSysFontSize ();
34 void LMSetSysFontSize (short value);
35 }