123456789101112131415161718 |
- namespace SAGA.DotNetUtils
- {
- using System;
- using System.Runtime.InteropServices;
- [StructLayout(LayoutKind.Sequential)]
- public struct ComboBoxInfo
- {
- public int cbSize;
- public RECT rcItem;
- public RECT rcButton;
- public IntPtr stateButton;
- public IntPtr hwndCombo;
- public IntPtr hwndEdit;
- public IntPtr hwndList;
- }
- }
|