view src/impl/hoofbaby/app/main.d @ 6:270343d824ae

The test program now uses the Encoder class.
author fraserofthenight
date Thu, 09 Jul 2009 20:28:13 -0700
parents e6cf9f26d0e7
children
line wrap: on
line source

/**
 * Hoofbaby -- http://www.dsource.org/projects/hoofbaby
 * Copyright (C) 2009 Robert Fraser
 * 
 * This program is free software; you can redistribute it andor
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 * 
 * 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.  See the
 * GNU General Public License for more details.
 */

module hoofbaby.app.main;

// Imports for whole program (just link to them)
import NONE_1       = tango.stdc.stdarg; // Must be linked in to prevent strange linker errors
debug import NONE_2 = tango.core.stacktrace.TraceExceptions;
import NONE_3       = hoofbaby.codec.libav.mingw;

import hoofbaby.app.libs;

public int main(char[][] args)
{
	initLibs();
	return 0;
}