import.h 433 B

123456789101112131415161718
  1. #ifndef NULLSOFT_WEBDEV_PLUGIN_IMPORT_HEADER
  2. #define NULLSOFT_WEBDEV_PLUGIN_IMPORT_HEADER
  3. #if defined(_MSC_VER) && (_MSC_VER >= 1020)
  4. #pragma once
  5. #endif
  6. #include <wtypes.h>
  7. HRESULT ImportService_GetFileSupported();
  8. HRESULT ImportService_GetUrlSupported();
  9. HRESULT ImportService_FromFile(HWND hOwner);
  10. HRESULT ImportService_FromUrl(HWND hOwner);
  11. void ImportService_SaveRecentUrl();
  12. #endif //NULLSOFT_WEBDEV_PLUGIN_IMPORT_HEADER