Well, looks like mingw isint as happy about scopes as borland was.

Well, its hard to explain so:

Code:
#include <iostream>
#include <fstream>
#include <string.h>
#include "Definitions.h"
using namespace std;

int LoadScript(string path) {
 ifstream file_in(path.c_str(), ios::nocreate); //Mingw assumes I want std::ios::nocreate.

 if(!file_in) {
  return ERROR_Load_Failed;
 }

 cout << file_in;
}
So, is there some way to termporarialy dereference std so I can use ios?