-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #457 from mkilgore/libqb-refactor-part-4
libqb refactor - Part 4
- Loading branch information
Showing
14 changed files
with
1,911 additions
and
1,860 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#pragma once | ||
|
||
#include <stdint.h> | ||
|
||
#include "qbs.h" | ||
|
||
void lrset_field(qbs *str); | ||
void field_free(qbs *str); | ||
void field_new(int32_t fileno); | ||
void field_update(int32_t fileno); | ||
void lrset_field(qbs *str); | ||
void field_free(qbs *str); | ||
void field_add(qbs *str, int64_t size); | ||
void field_get(int32_t fileno, int64_t offset, int32_t passed); | ||
void field_put(int32_t fileno, int64_t offset, int32_t passed); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#pragma once | ||
|
||
#include <stdint.h> | ||
#include "qbs.h" | ||
|
||
extern int32_t shell_call_in_progress; | ||
|
||
int64_t func_shell(qbs *str); | ||
int64_t func__shellhide(qbs *str); | ||
void sub_shell(qbs *str, int32_t passed); | ||
void sub_shell2(qbs *str, int32_t passed); | ||
void sub_shell3(qbs *str, int32_t passed); | ||
void sub_shell4(qbs *str, int32_t passed); |
Oops, something went wrong.