"DLL linking" tutorial returns Null function pointer

I’ve also been following the Linking DLLs tutorial, creating the example DLL with “getCircleArea”. After changing the solution platform to x64 it now gets the DLL handle, but

DLLgetCircleArea = (_getCircleArea)FPlatformProcess::GetDllExport(DLLHandle, *procName);

just returns a null pointer.
It seems widely accepted that my function name must have changed, and I should use “depends” to check this. I downloaded depends and can’t really work out where my function might be if it is there.
Anyone else solved the same problem?

Here is my code (which should be exactly whats in the tutorial)

/// Declare the DLL function's type
typedef float(*_getCircleArea)(float radius);

///Define the function using the DLL's function
float ACircleActor::getCircleAreaDLL(float radius)
{
	//FPaths::Combine(*FPaths::GamePluginsDir(), TEXT("CirclePlugin/"), TEXT("CirclesDLL.dll"));// Concatenate the plugins folder and the DLL file.
	FString filePath = FPaths::Combine(*FPaths::GameDir(), TEXT("Binaries/Win64/"), TEXT("CirclesDLL.dll"));
	if (FPaths::FileExists(filePath))
	{
		void *DLLHandle;
		DLLHandle = FPlatformProcess::GetDllHandle(*filePath); // Retrieve the DLL.
		if (DLLHandle != NULL)
		{
			_getCircleArea DLLgetCircleArea = NULL; // Local DLL function pointer.
			FString procName = "getCircleArea"; // The exact name of the DLL function.
			DLLgetCircleArea = (_getCircleArea)FPlatformProcess::GetDllExport(DLLHandle, *procName); // Export the DLL function.
			if (DLLgetCircleArea != NULL)
			{
				float out = DLLgetCircleArea(radius); // Call the DLL function, with arguments corresponding to the signature and return type of the function.
				return out; // return to UE
			}
		}
	}
	return -1.00f;
}

And the dll code:

// CirclesDLL.cpp : Defines the exported functions for the DLL application.
//

#include "stdafx.h"
float getCircleArea(float radius)
{
	return 3.1416 * (radius*radius);
}

My dll is attached, as a .txt since this won’t allow .dll.link text

I’ve solved my own question with this:

#define MY_DLL_API __declspec(dllexport)

// Undecorated function export : myCFunction
extern "C"
{
	MY_DLL_API float getCircleArea(float radius);
};


extern "C"
{
	// Undecorated function code
	MY_DLL_API float getCircleArea(float radius){
		return 3.14159265 * radius * radius;
	}

};