mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2025-02-26 08:22:31 +00:00
Don't force a fixed integer size
This commit is contained in:
parent
3f9f39a96e
commit
b7ba642efa
@ -41,12 +41,12 @@ enum job_status_e {
|
|||||||
JOBS_FAILED
|
JOBS_FAILED
|
||||||
};
|
};
|
||||||
|
|
||||||
typedef struct {
|
struct job_t {
|
||||||
int32_t id;
|
int id;
|
||||||
job_status_e status;
|
job_status_e status;
|
||||||
int32_t added_on, started_on, finished_on;
|
int added_on, started_on, finished_on;
|
||||||
wxString *description, *log;
|
wxString *description, *log;
|
||||||
} job_t;
|
};
|
||||||
|
|
||||||
extern std::vector<job_t> jobs;
|
extern std::vector<job_t> jobs;
|
||||||
|
|
||||||
|
@ -125,7 +125,7 @@ public:
|
|||||||
|
|
||||||
wxButton *b_start_muxing, *b_copy_to_clipboard, *b_add_to_jobqueue;
|
wxButton *b_start_muxing, *b_copy_to_clipboard, *b_add_to_jobqueue;
|
||||||
|
|
||||||
int32_t last_job_id;
|
int last_job_id;
|
||||||
|
|
||||||
bool muxing_in_progress;
|
bool muxing_in_progress;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user