Dependency Walker: missing dlls

These are API-sets – essentially, an extra level of call indirection introduced gradually since windows 7. Dependency walker development seemingly halted long before that, and it can’t handle API sets properly. So these are all false alarms and nothing to worry about. You’re not missing anything. Also see On API-MS-WIN-XXXXX.DLL, and Other Dependency Walker Glitches. … Read more

“Incomplete type not allowed ” when creating std::ofstream objects

As @Mgetz says, you probably forgot to #include <fstream>. The reason you didn’t get a not declared error and instead this incomplete type not allowed error has to do with what happens when there is a type that has been “forward declared”, but not yet fully defined. Look at this example: Notice we could not actually instantiate a Foo object or … Read more

Unexpected character encountered while parsing value

Possibly you are not passing JSON to DeserializeObject. It looks like from File.WriteAllText(tmpfile,… that type of tmpfile is string that contain path to a file. JsonConvert.DeserializeObject takes JSON value, not file path – so it fails trying to convert something like @”c:\temp\fooo” – which is clearly not JSON.

getline: identifier not found

I have problem with getline(). I tried many examples and read other solutions, but that didn’t solve my problem. I still have information ‘getline: identifier not found’. I included <stdio.h> <tchar.h> <iostream> <conio.h> <stdlib.h> <fstream> and still nothing. What do I need to do now? I use Windows 7 64 bit and Visual Studio 2013.