diff options
author | midipix <writeonce@midipix.org> | 2017-07-30 21:21:21 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2017-07-31 08:43:35 -0400 |
commit | d9d1789535a1ef6b0bc6dde9fba721ac923fe86c (patch) | |
tree | 3737e989f7ecfdcbc15f8cc89d5135f44623be55 /src/internal | |
parent | ae515fc910d2c548ccb2aeef59b67e0dcd13c3b6 (diff) | |
download | ntapi-d9d1789535a1ef6b0bc6dde9fba721ac923fe86c.tar.bz2 ntapi-d9d1789535a1ef6b0bc6dde9fba721ac923fe86c.tar.xz |
subsystem interfaces: integrated extended port name helper functions.
Diffstat (limited to 'src/internal')
-rw-r--r-- | src/internal/ntapi.c | 3 | ||||
-rw-r--r-- | src/internal/ntapi_fnapi.h | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/src/internal/ntapi.c b/src/internal/ntapi.c index 65b5c72..f6eb0b2 100644 --- a/src/internal/ntapi.c +++ b/src/internal/ntapi.c @@ -251,6 +251,9 @@ static int32_t __fastcall __ntapi_init_once(ntapi_vtbl ** pvtbl) __ntapi->tt_port_generate_keys = __ntapi_tt_port_generate_keys; __ntapi->tt_port_format_keys = __ntapi_tt_port_format_keys; __ntapi->tt_port_name_from_attributes = __ntapi_tt_port_name_from_attributes; + __ntapi->tt_port_attr_from_name = __ntapi_tt_port_attr_from_name; + __ntapi->tt_port_attr_from_string = __ntapi_tt_port_attr_from_string; + __ntapi->tt_port_attr_from_symlink = __ntapi_tt_port_attr_from_symlink; /* nt_argv.h */ __ntapi->tt_get_cmd_line_utf16 = __ntapi_tt_get_cmd_line_utf16; diff --git a/src/internal/ntapi_fnapi.h b/src/internal/ntapi_fnapi.h index 09d87b6..5f682b8 100644 --- a/src/internal/ntapi_fnapi.h +++ b/src/internal/ntapi_fnapi.h @@ -138,6 +138,9 @@ ntapi_tt_port_type_from_guid __ntapi_tt_port_type_from_guid; ntapi_tt_port_generate_keys __ntapi_tt_port_generate_keys; ntapi_tt_port_format_keys __ntapi_tt_port_format_keys; ntapi_tt_port_name_from_attributes __ntapi_tt_port_name_from_attributes; +ntapi_tt_port_attr_from_name __ntapi_tt_port_attr_from_name; +ntapi_tt_port_attr_from_string __ntapi_tt_port_attr_from_string; +ntapi_tt_port_attr_from_symlink __ntapi_tt_port_attr_from_symlink; /* nt_argv.h */ ntapi_tt_get_cmd_line_utf16 __ntapi_tt_get_cmd_line_utf16; |