Sort all includes in src/gromacs
[alexxy/gromacs.git] / src / gromacs / fileio / vmdio.c
index 6d95d4f0631ef8a292fa50618d4f6aaf0eeb1ce9..621160a9e8f91fe49085b0e71be53b01d8c1eb43 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * This file is part of the GROMACS molecular simulation package.
  *
- * Copyright (c) 2009,2010,2012,2013, by the GROMACS development team, led by
+ * Copyright (c) 2009,2010,2012,2013,2014, by the GROMACS development team, led by
  * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
  * and including many others, as listed in the AUTHORS file in the
  * top-level source directory and at http://www.gromacs.org.
  * To help us fund GROMACS development, we humbly ask that you cite
  * the research papers on the package. Check out http://www.gromacs.org.
  */
+#include "gmxpre.h"
 
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
+#include "vmdio.h"
+
+#include "config.h"
 
 /* Derived from PluginMgr.C and catdcd.c */
 
 /*                                                                           */
 /*****************************************************************************/
 
-#include <stdlib.h>
+#include <assert.h>
 #include <stdio.h>
+#include <stdlib.h>
 #include <string.h>
-#include <assert.h>
 
 /*
  * Plugin header files; get plugin source from www.ks.uiuc.edu/Research/vmd"
 #ifndef GMX_NATIVE_WINDOWS
 #include <glob.h>
 #else
-#include <windows.h>
+#ifndef _WIN32_IE
+#define _WIN32_IE 0x0500 /* SHGetFolderPath is available since WinXP/IE5 */
+#endif
 #include <shlobj.h>
+#include <windows.h>
 #endif
-#include "smalloc.h"
-#include "futil.h"
-#include "vmdio.h"
-
 
-#include "types/simple.h"
-#include "vec.h"
-#include "gmxfio.h"
+#include "gromacs/fileio/gmxfio.h"
+#include "gromacs/fileio/trx.h"
+#include "gromacs/math/vec.h"
+#include "gromacs/utility/basedefinitions.h"
+#include "gromacs/utility/futil.h"
+#include "gromacs/utility/smalloc.h"
 
 
 typedef int (*initfunc)(void);