view dmd/LINK.d @ 162:438eaa11eed4

updated build script to use dmd2.039 some missing methods implemented
author korDen
date Tue, 21 Sep 2010 14:59:56 +0400
parents 10317f0c89a5
children
line wrap: on
line source

module dmd.LINK;

enum LINK
{
    LINKdefault,
    LINKd,
    LINKc,
    LINKcpp,
    LINKwindows,
    LINKpascal,
}

import dmd.EnumUtils;
mixin(BringToCurrentScope!(LINK));