diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/sofort/sofort.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/sofort/sofort.h b/include/sofort/sofort.h index ee5072f..0808bbe 100644 --- a/include/sofort/sofort.h +++ b/include/sofort/sofort.h @@ -37,8 +37,8 @@ extern "C" { #define SFRT_DRIVER_DRY_RUN 0x0020 /* unit action flags */ -#define SFRT_OUTPUT_NAME 0x0001 -#define SFRT_OUTPUT_ADDRESS 0x0002 +#define SFRT_OUTPUT_NAME 0x0001 /* dummy */ +#define SFRT_OUTPUT_ADDRESS 0x0002 /* dummy */ struct sfrt_input { void * addr; @@ -49,7 +49,7 @@ struct sfrt_common_ctx { uint64_t drvflags; uint64_t actflags; uint64_t fmtflags; - const char * anystring; + const char * anystring; /* dummy */ }; struct sfrt_driver_ctx { @@ -82,9 +82,9 @@ sfrt_api int sfrt_map_input (int fd, const char * path, int prot, struct sfrt_ sfrt_api int sfrt_unmap_input (struct sfrt_input *); /* utility api */ -sfrt_api int sfrt_output_dummy (const struct sfrt_common_ctx *, FILE *); -sfrt_api int sfrt_output_name (const struct sfrt_unit_ctx *, FILE *); -sfrt_api int sfrt_output_address (const struct sfrt_unit_ctx *, FILE *); +sfrt_api int sfrt_output_dummy (const struct sfrt_common_ctx *, FILE *); /* dummy */ +sfrt_api int sfrt_output_name (const struct sfrt_unit_ctx *, FILE *); /* dummy */ +sfrt_api int sfrt_output_address (const struct sfrt_unit_ctx *, FILE *); /* dummy */ #ifdef __cplusplus } |