Is there a way to make a C DLL using MSVC++ 2005? when i make a project MSVC immeadiatly makes all c++ files.

ie/
Code:
// TestDLL.h
#pragma once
using namespace System;
namespace TestDLL {
	public ref class Class1
	{
		// TODO: Add your methods for this class here.
	};
}
<if this one isnt in c++ (its hard to tell since i dont actually know c++) there are many other files that are>