window_configuration.h 754 B

123456789101112131415161718
  1. #ifndef WINDOW_CONFIGURATION_
  2. #define WINDOW_CONFIGURATION_
  3. // This is a temporary approach to isolate changes that people are likely to
  4. // make to main.cpp, where the APIs are still in flux. This will reduce the
  5. // need to resolve conflicts or re-create changes slightly differently every
  6. // time the Windows Flutter API surface changes.
  7. //
  8. // Longer term there should be simpler configuration options for common
  9. // customizations like this, without requiring native code changes.
  10. extern const wchar_t* kFlutterWindowTitle;
  11. extern const unsigned int kFlutterWindowOriginX;
  12. extern const unsigned int kFlutterWindowOriginY;
  13. extern const unsigned int kFlutterWindowWidth;
  14. extern const unsigned int kFlutterWindowHeight;
  15. #endif // WINDOW_CONFIGURATION_