1
0

widgetHost.h 522 B

1234567891011121314151617181920212223
  1. #ifndef _NULLSOFT_WINAMP_ML_DEVICES_WDGET_HOST_HEADER
  2. #define _NULLSOFT_WINAMP_ML_DEVICES_WIDGET_HOST_HEADER
  3. #if defined(_MSC_VER) && (_MSC_VER >= 1020)
  4. #pragma once
  5. #endif
  6. #include <wtypes.h>
  7. typedef HWND (*WidgetCreateProc)(HWND hostWindow, void *user);
  8. HWND
  9. WidgetHost_Create(unsigned int windowStyle,
  10. int x,
  11. int y,
  12. int width,
  13. int height,
  14. HWND parentWindow,
  15. WidgetCreateProc createProc,
  16. void *createParam);
  17. #endif //_NULLSOFT_WINAMP_ML_DEVICES_WIDGET_HOST_HEADER