diff options
author | midipix <writeonce@midipix.org> | 2016-05-11 11:58:03 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-05-14 07:18:25 -0400 |
commit | c713d8d019f7b0f9ed4a60912f440aca991d43c1 (patch) | |
tree | 949b58b49bc5087768cc8dbc3f65513b022ae5c5 /src/fs | |
parent | a7c8d71acbd60c4b2f3ba63c47eba9c74fa4270d (diff) | |
download | ntapi-c713d8d019f7b0f9ed4a60912f440aca991d43c1.tar.bz2 ntapi-c713d8d019f7b0f9ed4a60912f440aca991d43c1.tar.xz |
code maintenance: mark unused parameters.
Diffstat (limited to 'src/fs')
-rw-r--r-- | src/fs/ntapi_tt_mount.c | 2 | ||||
-rw-r--r-- | src/fs/ntapi_tt_open_logical_parent_directory.c | 8 | ||||
-rw-r--r-- | src/fs/ntapi_tt_open_physical_parent_directory.c | 2 |
3 files changed, 12 insertions, 0 deletions
diff --git a/src/fs/ntapi_tt_mount.c b/src/fs/ntapi_tt_mount.c index 391e3fb..6b6dce2 100644 --- a/src/fs/ntapi_tt_mount.c +++ b/src/fs/ntapi_tt_mount.c @@ -329,6 +329,8 @@ int32_t __stdcall __ntapi_tt_get_dos_drive_letter_from_device( uint32_t offset; nt_mount_points * mnt_points; + (void)buffer_size; + if (!dev_name) { dev_name = (nt_mount_dev_name *)&dev_name_buffer; status = __ntapi_tt_get_dos_drive_device_name( diff --git a/src/fs/ntapi_tt_open_logical_parent_directory.c b/src/fs/ntapi_tt_open_logical_parent_directory.c index f62b8b5..0f1b7d6 100644 --- a/src/fs/ntapi_tt_open_logical_parent_directory.c +++ b/src/fs/ntapi_tt_open_logical_parent_directory.c @@ -17,5 +17,13 @@ int32_t __stdcall __ntapi_tt_open_logical_parent_directory( __in uint32_t open_options, __out int32_t * type) { + (void)hparent; + (void)hdir; + (void)buffer; + (void)buffer_size; + (void)desired_access; + (void)open_options; + (void)type; + return NT_STATUS_MORE_PROCESSING_REQUIRED; } diff --git a/src/fs/ntapi_tt_open_physical_parent_directory.c b/src/fs/ntapi_tt_open_physical_parent_directory.c index c713962..a9975a7 100644 --- a/src/fs/ntapi_tt_open_physical_parent_directory.c +++ b/src/fs/ntapi_tt_open_physical_parent_directory.c @@ -24,6 +24,8 @@ int32_t __stdcall __ntapi_tt_open_physical_parent_directory( nt_unicode_string * path; uint32_t len; + (void)type; + path = (nt_unicode_string *)buffer; if ((status = __ntapi->zw_query_object( |