Since it's in use by the OS, this should be a hook like process and be similar to PInvoke. What I'm trying
to do is provide myself with total control of the Aero Flip 3D functions (size, shape, location, rotation, that sort of thing) -Why is this not already heavily posted on the internet?
I've done the research that I can and have been looking over the one C++ version i've found online
(won't compile x3501 error + others)
here is what i know, i forgot some, but here's basically the start
pinvoke.net : dwmapi.dll
youtube.com/watch?v=1lLgUqGjDBk Source I mentioned, w/ their demo video
If someone could help this would be fantastic, I'm doing what I can to apply my knowledge to convert the
C++ to C#, but I doubt I could fully do it alone. Maybe a pastebin would work? Is there a better place to drop a source code that can be edited by others?
Everything I know tells me it should be application level, but I've asked a dozen people and they say
Aero wasn't made public therefor it's not so simple..
From my experience though anything that comes with the OS itself, should be readily accessible, modifiable,
and applicable.
en.wikipedia.org/wiki/Desktop_Window_Manager
"Windows Flip 3D does not use the public thumbnail APIs as they do not allow for directly accessing
the Direct3D textures.[7] Instead, Flip 3D is implemented directly in the DWM engine."
--edit two--found more on wiki
milcore.dll : DWM uses the Media Integration Layer
1. The Desktop Window Manager uses Media Integration Layer (MIL), the unmanaged compositor which it shares
with Windows Presentation Foundation, to represent the windows as composition nodes in a composition tree.
2. Since MIL provides a retained mode graphics system by caching the composition trees, the job of repainting
and refreshing the screen when windows are moved is handled by DWM and MIL, freeing the application of the responsibility. The background data is already in the composition tree and the off-screen buffers and is directly used to render the background. (WM_PAINT)
MESSAGE : which i've found can be a pain in the past.
I'm looking more specifically to creating a new Aero Flip 3D-like user experience.. with multiple renditions
of the Aero Flip running (custom styles of course: shapes(smaller, drag-drop & user controlled rotation) etc..
So they're not exactly thumbnails.. I'm going to try to exercise the available dwmapi PInvokes fully
and get back.