1
0

preferences.h 689 B

123456789101112131415161718
  1. #pragma once
  2. #include <windows.h>
  3. #include "config.h"
  4. extern HINSTANCE enc_fhg_HINST;
  5. INT_PTR CALLBACK Preferences_MP4_DlgProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam);
  6. INT_PTR CALLBACK Preferences_ADTS_DlgProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam);
  7. /* common to both */
  8. extern const int bitrate_slider_precision;
  9. void UpdateInfo(HWND hwnd, const AACConfiguration *config);
  10. void UpdateUI(HWND hwnd, AACConfigurationFile *config);
  11. int Preferences_GetEncoderVersion(char *version_string, size_t cch);
  12. unsigned int GetSliderBitrate(HWND hwnd);
  13. #include <api/application/api_application.h>
  14. extern api_application *applicationApi;
  15. #define WASABI_API_APP applicationApi