view dmd/LINK.d @ 98:5c859d5fbe27

and more
author Trass3r
date Tue, 31 Aug 2010 03:53:49 +0200
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));