Adding an interactive Editor in Standard win32/HWND program

I want to integrate/embed an interactive Python editor in my Windows c++ program. The editor should work like the standard interactive Python editor, plus interact with the c++ program.
I’m new to Python but see the strange in the language Allowing users to interact with my Windows c++ program from Python, and passing data from my program to Python is a great feature.
But I want to start the correct place. I can find information about embedding Python in c++ and extending Python with c++. I have found something about embedding an interactive editor in Qt and IPython, but what about a standard Windows win32/HWND program.
Anyone knowing how to achieve this the simplest way?

Thanks cpede