mirror of
https://github.com/ankitects/anki.git
synced 2025-11-06 12:47:11 -05:00
add bindgen'd py39/313 PyConfig definitions
This commit is contained in:
parent
c22e38f4a8
commit
36ca68a869
3 changed files with 171 additions and 0 deletions
|
|
@ -13,6 +13,9 @@ pub mod windows;
|
|||
#[cfg(unix)]
|
||||
pub mod nix;
|
||||
|
||||
mod py313;
|
||||
mod py39;
|
||||
|
||||
use std::path::PathBuf;
|
||||
|
||||
use anki_process::CommandExt;
|
||||
|
|
|
|||
93
qt/launcher/src/platform/py313.rs
Normal file
93
qt/launcher/src/platform/py313.rs
Normal file
|
|
@ -0,0 +1,93 @@
|
|||
// Copyright: Ankitects Pty Ltd and contributors
|
||||
// License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
||||
|
||||
use libc::wchar_t;
|
||||
|
||||
#[repr(C)]
|
||||
#[derive(Debug, Copy, Clone)]
|
||||
pub struct PyStatus {
|
||||
pub _type: ::std::os::raw::c_uint,
|
||||
pub func: *const ::std::os::raw::c_char,
|
||||
pub err_msg: *const ::std::os::raw::c_char,
|
||||
pub exitcode: ::std::os::raw::c_int,
|
||||
}
|
||||
|
||||
#[repr(C)]
|
||||
#[derive(Debug, Copy, Clone)]
|
||||
pub struct PyWideStringList {
|
||||
pub length: isize,
|
||||
pub items: *mut *mut wchar_t,
|
||||
}
|
||||
|
||||
#[repr(C)]
|
||||
#[derive(Debug, Copy, Clone)]
|
||||
pub struct PyConfig {
|
||||
pub _config_init: ::std::os::raw::c_int,
|
||||
pub isolated: ::std::os::raw::c_int,
|
||||
pub use_environment: ::std::os::raw::c_int,
|
||||
pub dev_mode: ::std::os::raw::c_int,
|
||||
pub install_signal_handlers: ::std::os::raw::c_int,
|
||||
pub use_hash_seed: ::std::os::raw::c_int,
|
||||
pub hash_seed: ::std::os::raw::c_ulong,
|
||||
pub faulthandler: ::std::os::raw::c_int,
|
||||
pub tracemalloc: ::std::os::raw::c_int,
|
||||
pub perf_profiling: ::std::os::raw::c_int,
|
||||
pub import_time: ::std::os::raw::c_int,
|
||||
pub code_debug_ranges: ::std::os::raw::c_int,
|
||||
pub show_ref_count: ::std::os::raw::c_int,
|
||||
pub dump_refs: ::std::os::raw::c_int,
|
||||
pub dump_refs_file: *mut wchar_t,
|
||||
pub malloc_stats: ::std::os::raw::c_int,
|
||||
pub filesystem_encoding: *mut wchar_t,
|
||||
pub filesystem_errors: *mut wchar_t,
|
||||
pub pycache_prefix: *mut wchar_t,
|
||||
pub parse_argv: ::std::os::raw::c_int,
|
||||
pub orig_argv: PyWideStringList,
|
||||
pub argv: PyWideStringList,
|
||||
pub xoptions: PyWideStringList,
|
||||
pub warnoptions: PyWideStringList,
|
||||
pub site_import: ::std::os::raw::c_int,
|
||||
pub bytes_warning: ::std::os::raw::c_int,
|
||||
pub warn_default_encoding: ::std::os::raw::c_int,
|
||||
pub inspect: ::std::os::raw::c_int,
|
||||
pub interactive: ::std::os::raw::c_int,
|
||||
pub optimization_level: ::std::os::raw::c_int,
|
||||
pub parser_debug: ::std::os::raw::c_int,
|
||||
pub write_bytecode: ::std::os::raw::c_int,
|
||||
pub verbose: ::std::os::raw::c_int,
|
||||
pub quiet: ::std::os::raw::c_int,
|
||||
pub user_site_directory: ::std::os::raw::c_int,
|
||||
pub configure_c_stdio: ::std::os::raw::c_int,
|
||||
pub buffered_stdio: ::std::os::raw::c_int,
|
||||
pub stdio_encoding: *mut wchar_t,
|
||||
pub stdio_errors: *mut wchar_t,
|
||||
#[cfg(windows)]
|
||||
pub legacy_windows_stdio: ::std::os::raw::c_int,
|
||||
pub check_hash_pycs_mode: *mut wchar_t,
|
||||
pub use_frozen_modules: ::std::os::raw::c_int,
|
||||
pub safe_path: ::std::os::raw::c_int,
|
||||
pub int_max_str_digits: ::std::os::raw::c_int,
|
||||
pub cpu_count: ::std::os::raw::c_int,
|
||||
pub pathconfig_warnings: ::std::os::raw::c_int,
|
||||
pub program_name: *mut wchar_t,
|
||||
pub pythonpath_env: *mut wchar_t,
|
||||
pub home: *mut wchar_t,
|
||||
pub platlibdir: *mut wchar_t,
|
||||
pub module_search_paths_set: ::std::os::raw::c_int,
|
||||
pub module_search_paths: PyWideStringList,
|
||||
pub stdlib_dir: *mut wchar_t,
|
||||
pub executable: *mut wchar_t,
|
||||
pub base_executable: *mut wchar_t,
|
||||
pub prefix: *mut wchar_t,
|
||||
pub base_prefix: *mut wchar_t,
|
||||
pub exec_prefix: *mut wchar_t,
|
||||
pub base_exec_prefix: *mut wchar_t,
|
||||
pub skip_source_first_line: ::std::os::raw::c_int,
|
||||
pub run_command: *mut wchar_t,
|
||||
pub run_module: *mut wchar_t,
|
||||
pub run_filename: *mut wchar_t,
|
||||
pub sys_path_0: *mut wchar_t,
|
||||
pub _install_importlib: ::std::os::raw::c_int,
|
||||
pub _init_main: ::std::os::raw::c_int,
|
||||
pub _is_python_build: ::std::os::raw::c_int,
|
||||
}
|
||||
75
qt/launcher/src/platform/py39.rs
Normal file
75
qt/launcher/src/platform/py39.rs
Normal file
|
|
@ -0,0 +1,75 @@
|
|||
// Copyright: Ankitects Pty Ltd and contributors
|
||||
// License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
||||
|
||||
use libc::wchar_t;
|
||||
|
||||
#[repr(C)]
|
||||
#[derive(Debug, Copy, Clone)]
|
||||
pub struct PyWideStringList {
|
||||
pub length: ::std::os::raw::c_longlong,
|
||||
pub items: *mut *mut wchar_t,
|
||||
}
|
||||
|
||||
#[repr(C)]
|
||||
#[derive(Debug, Copy, Clone)]
|
||||
pub struct PyConfig {
|
||||
pub _config_init: ::std::os::raw::c_int,
|
||||
pub isolated: ::std::os::raw::c_int,
|
||||
pub use_environment: ::std::os::raw::c_int,
|
||||
pub dev_mode: ::std::os::raw::c_int,
|
||||
pub install_signal_handlers: ::std::os::raw::c_int,
|
||||
pub use_hash_seed: ::std::os::raw::c_int,
|
||||
pub hash_seed: ::std::os::raw::c_ulong,
|
||||
pub faulthandler: ::std::os::raw::c_int,
|
||||
pub _use_peg_parser: ::std::os::raw::c_int,
|
||||
pub tracemalloc: ::std::os::raw::c_int,
|
||||
pub import_time: ::std::os::raw::c_int,
|
||||
pub show_ref_count: ::std::os::raw::c_int,
|
||||
pub dump_refs: ::std::os::raw::c_int,
|
||||
pub malloc_stats: ::std::os::raw::c_int,
|
||||
pub filesystem_encoding: *mut wchar_t,
|
||||
pub filesystem_errors: *mut wchar_t,
|
||||
pub pycache_prefix: *mut wchar_t,
|
||||
pub parse_argv: ::std::os::raw::c_int,
|
||||
pub argv: PyWideStringList,
|
||||
pub program_name: *mut wchar_t,
|
||||
pub xoptions: PyWideStringList,
|
||||
pub warnoptions: PyWideStringList,
|
||||
pub site_import: ::std::os::raw::c_int,
|
||||
pub bytes_warning: ::std::os::raw::c_int,
|
||||
pub inspect: ::std::os::raw::c_int,
|
||||
pub interactive: ::std::os::raw::c_int,
|
||||
pub optimization_level: ::std::os::raw::c_int,
|
||||
pub parser_debug: ::std::os::raw::c_int,
|
||||
pub write_bytecode: ::std::os::raw::c_int,
|
||||
pub verbose: ::std::os::raw::c_int,
|
||||
pub quiet: ::std::os::raw::c_int,
|
||||
pub user_site_directory: ::std::os::raw::c_int,
|
||||
pub configure_c_stdio: ::std::os::raw::c_int,
|
||||
pub buffered_stdio: ::std::os::raw::c_int,
|
||||
pub stdio_encoding: *mut wchar_t,
|
||||
pub stdio_errors: *mut wchar_t,
|
||||
#[cfg(windows)]
|
||||
pub legacy_windows_stdio: ::std::os::raw::c_int,
|
||||
pub check_hash_pycs_mode: *mut wchar_t,
|
||||
pub pathconfig_warnings: ::std::os::raw::c_int,
|
||||
pub pythonpath_env: *mut wchar_t,
|
||||
pub home: *mut wchar_t,
|
||||
pub module_search_paths_set: ::std::os::raw::c_int,
|
||||
pub module_search_paths: PyWideStringList,
|
||||
pub executable: *mut wchar_t,
|
||||
pub base_executable: *mut wchar_t,
|
||||
pub prefix: *mut wchar_t,
|
||||
pub base_prefix: *mut wchar_t,
|
||||
pub exec_prefix: *mut wchar_t,
|
||||
pub base_exec_prefix: *mut wchar_t,
|
||||
pub platlibdir: *mut wchar_t,
|
||||
pub skip_source_first_line: ::std::os::raw::c_int,
|
||||
pub run_command: *mut wchar_t,
|
||||
pub run_module: *mut wchar_t,
|
||||
pub run_filename: *mut wchar_t,
|
||||
pub _install_importlib: ::std::os::raw::c_int,
|
||||
pub _init_main: ::std::os::raw::c_int,
|
||||
pub _isolated_interpreter: ::std::os::raw::c_int,
|
||||
pub _orig_argv: PyWideStringList,
|
||||
}
|
||||
Loading…
Reference in a new issue