Is it possible to make your own winapi function like GetPixel that work on windows, if it is what steps should make?

有帮助吗?

解决方案

Yes and no. One way or another, you will end up accessing some part of the WinAPI. You may provide utility wrappers, and many parts of the WinAPI already are such wrappers. But you can't entirely avoid it. At the heart of Windows are datastructures that you just can't access directly.

But why do you want this?

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top