namespace Apewer.Internals.Interop { /// struct Size { /// public int cx; /// public int cy; /// /// /// public Size(int x, int y) { cx = x; cy = y; } } }