mirror of
https://github.com/CCExtractor/ccextractor.git
synced 2026-04-20 21:20:28 +00:00
[PR #1559] [CLOSED] [FEAT] Add options module in lib_ccxr
#2278
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/CCExtractor/ccextractor/pull/1559
Author: @elbertronnie
Created: 8/27/2023
Status: ❌ Closed
Base:
master← Head:add-options-module📝 Commits (9)
8014d8bcreate lib_ccxr and libccxr_exports8f348feadd log module676ef84add encoding modulef4d4d7cadd common constants module49cdd1fadd time units module6db74b7Merge branch 'add-log-module'4e44c55Merge branch 'add-constants-module'8bf7180Merge branch 'add-encoding-module'e60b460add options module📊 Changes
22 files changed (+3650 additions, -63 deletions)
View changed files
📝
.gitignore(+2 -1)📝
src/lib_ccx/lib_ccx.c(+8 -0)📝
src/lib_ccx/utility.c(+33 -0)📝
src/rust/Cargo.lock(+322 -61)📝
src/rust/Cargo.toml(+1 -0)📝
src/rust/build.rs(+8 -1)➕
src/rust/lib_ccxr/Cargo.lock(+338 -0)➕
src/rust/lib_ccxr/Cargo.toml(+23 -0)➕
src/rust/lib_ccxr/src/common/constants.rs(+415 -0)➕
src/rust/lib_ccxr/src/common/mod.rs(+23 -0)➕
src/rust/lib_ccxr/src/common/options.rs(+306 -0)➕
src/rust/lib_ccxr/src/hardsubx.rs(+16 -0)➕
src/rust/lib_ccxr/src/lib.rs(+3 -0)➕
src/rust/lib_ccxr/src/util/encoding.rs(+760 -0)➕
src/rust/lib_ccxr/src/util/log.rs(+546 -0)➕
src/rust/lib_ccxr/src/util/mod.rs(+5 -0)➕
src/rust/lib_ccxr/src/util/time/c_functions.rs(+35 -0)➕
src/rust/lib_ccxr/src/util/time/mod.rs(+27 -0)➕
src/rust/lib_ccxr/src/util/time/units.rs(+634 -0)📝
src/rust/src/lib.rs(+2 -0)...and 2 more files
📄 Description
In raising this pull request, I confirm the following (please check boxes):
My familiarity with the project is as follows (check one):
This is an attempt to split #1495 into multiple independant PRs. Dependant on #1551, #1556, #1553, #1555 and #1554.
This PR adds a type used to store the arguments of CCExtractor CLI along with other kinds of global information.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.