2020-03-06 19:35:18 -08:00
|
|
|
//! Constants typically used for referencing around in the Objective-C runtime.
|
|
|
|
//! Specific to this crate.
|
|
|
|
|
|
|
|
pub(crate) static APP_PTR: &str = "rstAppPtr";
|
|
|
|
pub(crate) static BACKGROUND_COLOR: &str = "rstBackgroundColor";
|
|
|
|
pub(crate) static TOOLBAR_PTR: &str = "rstToolbarPtr";
|
2020-03-19 20:07:44 -07:00
|
|
|
pub(crate) static VIEW_DELEGATE_PTR: &str = "rstViewDelegatePtr";
|
2020-03-17 19:11:03 -07:00
|
|
|
|
|
|
|
#[cfg(feature = "webview")]
|
2020-03-06 19:35:18 -08:00
|
|
|
pub(crate) static WEBVIEW_CONFIG_VAR: &str = "rstWebViewConfig";
|
2020-03-17 19:11:03 -07:00
|
|
|
|
|
|
|
#[cfg(feature = "webview")]
|
2020-03-06 19:35:18 -08:00
|
|
|
pub(crate) static WEBVIEW_VAR: &str = "rstWebView";
|
2020-03-17 19:11:03 -07:00
|
|
|
|
|
|
|
#[cfg(feature = "webview")]
|
2020-03-06 19:35:18 -08:00
|
|
|
pub(crate) static WEBVIEW_CONTROLLER_PTR: &str = "rstWebViewControllerPtr";
|