deviceIconEditor.h 480 B

12345678910111213141516171819202122
  1. #ifndef _NULLSOFT_WINAMP_GEN_DEVICE_PROVIDER_DEVICE_ICON_EDITOR_HEADER
  2. #define _NULLSOFT_WINAMP_GEN_DEVICE_PROVIDER_DEVICE_ICON_EDITOR_HEADER
  3. #if defined(_MSC_VER) && (_MSC_VER >= 1020)
  4. #pragma once
  5. #endif
  6. #include <wtypes.h>
  7. typedef struct DeviceIconInfo
  8. {
  9. int width;
  10. int height;
  11. wchar_t *path;
  12. } DeviceIconInfo;
  13. INT_PTR
  14. DeviceIconEditor_Show(HWND parentWindow,
  15. DeviceIconInfo *iconInfo);
  16. #endif //_NULLSOFT_WINAMP_GEN_DEVICE_PROVIDER_DEVICE_ICON_EDITOR_HEADER