1 /** \file 2 * \brief IUP driver 3 * 4 * See Copyright Notice in cd.h 5 */ 6 7 module cd.iup; 8 9 import cd.cd: cdContext; 10 11 extern (C) @safe nothrow: 12 13 /* NOTICE: implemented done in IUP at the IUPCD library. 14 Only this files is at the CD files. */ 15 16 cdContext* cdContextIup(); 17 cdContext* cdContextIupDBuffer(); 18 cdContext* cdContextIupDBufferRGB(); 19 20 alias CD_IUP = cdContextIup; 21 alias CD_IUPDBUFFER = cdContextIupDBuffer; 22 alias CD_IUPDBUFFERRGB = cdContextIupDBufferRGB; 23