2013-09-24 10:43:15 +00:00
|
|
|
/**
|
|
|
|
* \file
|
|
|
|
* \brief Entry point for the Visual Studio project.
|
|
|
|
*
|
|
|
|
* This file is needed for Visual Studio, because it will not link the main
|
|
|
|
* function from the .lib if the project has no .c files.
|
2014-04-04 13:04:44 +00:00
|
|
|
*
|
|
|
|
* \author Marko Viitanen ( fador@iki.fi ),
|
2013-09-24 10:43:15 +00:00
|
|
|
* Tampere University of Technology,
|
|
|
|
* Department of Pervasive Computing.
|
2014-04-04 13:04:44 +00:00
|
|
|
* \author Ari Koivula ( ari@koivu.la ),
|
2013-09-24 10:43:15 +00:00
|
|
|
* Tampere University of Technology,
|
|
|
|
* Department of Pervasive Computing.
|
|
|
|
*/
|
|
|
|
|
|
|
|
// This is not actually needed, because the linker will use the main from the
|
|
|
|
// .lib of the encoder, but I will leave it here in case we encounter some
|
|
|
|
// problem with that.
|
|
|
|
/*
|
|
|
|
int encmain(int argc, char *argv[]);
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
int i = 10;
|
|
|
|
while (i) {
|
|
|
|
--i;
|
|
|
|
}
|
|
|
|
return encmain(argc, argv);
|
|
|
|
}
|
|
|
|
*/
|