Desktop Functions: Smart Device Functions:
|
Search Results for "EnumPropsEx" in [All]user321: EnumProps
static extern int EnumPropsEx(IntPtr hWnd, EnumPropsExDelegate lpEnumFunc,
static extern int EnumPropsEx(IntPtr hWnd, EnumPropsExDelegate lpEnumFunc, IntPtr lParam);
private delegate int EnumPropsExDelegate(IntPtr hwnd, IntPtr lpszString, IntPtr hData, IntPtr dwData);
EnumPropsExDelegate enumPropsExDel = new EnumPropsExDelegate(PropEnumProcEx);
var i = EnumPropsEx(hWnd, enumPropsExDel, new IntPtr()); 2: EnumPropsEx
static extern int EnumPropsEx(IntPtr hWnd, EnumPropsExDelegate lpEnumFunc,
static extern int EnumPropsEx(IntPtr hWnd, EnumPropsExDelegate lpEnumFunc, IntPtr lParam);
private delegate int EnumPropsExDelegate(IntPtr hwnd, IntPtr lpszString, long hData, long dwData);
EnumPropsExDelegate enumPropsExDel = new EnumPropsExDelegate(PropEnumProcEx);
var i = EnumPropsEx(hWnd, enumPropsExDel, new IntPtr()); |