diff options
author | midipix <writeonce@midipix.org> | 2018-05-04 20:26:39 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-05-07 01:27:03 -0400 |
commit | b92a12fc14551f51f02a68fdf6c0265a758f1c15 (patch) | |
tree | 39647c9e41f6fa6cc40f480ce3d129e1b744802e /src/port | |
parent | 0e25b018afe1d358f8734205c2b42e1eb045ccb6 (diff) | |
download | ntapi-b92a12fc14551f51f02a68fdf6c0265a758f1c15.tar.bz2 ntapi-b92a12fc14551f51f02a68fdf6c0265a758f1c15.tar.xz |
subsystem interfaces: integrated advisory file locking definitions.
Diffstat (limited to 'src/port')
-rw-r--r-- | src/port/ntapi_port_name_helper.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/port/ntapi_port_name_helper.c b/src/port/ntapi_port_name_helper.c index b4f0065..e71b873 100644 --- a/src/port/ntapi_port_name_helper.c +++ b/src/port/ntapi_port_name_helper.c @@ -23,7 +23,9 @@ static const __port_service_prefix __port_service_prefixes[NT_PORT_TYPE_CAP][NT_ {{'s','e','m','c','t','l'}}, {{'s','e','m','s','v','c'}}, {{'m','s','q','c','t','l'}}, - {{'m','s','q','s','v','c'}}}; + {{'m','s','q','s','v','c'}}, + {{'a','f','l','c','t','l'}}, + {{'a','f','l','s','v','c'}}}; static const nt_guid __port_guids[NT_PORT_TYPE_CAP][NT_PORT_SUBTYPE_CAP] = { {NT_PORT_GUID_DEFAULT}, @@ -35,7 +37,9 @@ static const nt_guid __port_guids[NT_PORT_TYPE_CAP][NT_PORT_SUBTYPE_CAP] = { {NT_PORT_GUID_SEMCTL}, {NT_PORT_GUID_SEMSVC}, {NT_PORT_GUID_MSQCTL}, - {NT_PORT_GUID_MSQSVC}}; + {NT_PORT_GUID_MSQSVC}, + {NT_PORT_GUID_AFLCTL}, + {NT_PORT_GUID_AFLSVC}}; int32_t __stdcall __ntapi_tt_port_guid_from_type( __out nt_guid * guid, |