Got it working!

Code:
	HANDLE myFile = CreateFile("file://Config.ini", GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
	if (myFile != INVALID_HANDLE_VALUE)
	{
		char myRead[0x500];
		DWORD bytesOut; //0x110 Read Value of (0x110) + 0xC = FileName
		if (ReadFile(myFile, myRead, 0x1D0, &bytesOut, NULL))
		{

		}
	}