Find example import from that pseudo:
% dumpbin /imports kernel32.dll/10.0.10586.0-wow64/kernel32.dll | grep -5 -i enclave
api-ms-win-core-enclave-l1-1-0.dll
6B88030C Import Address Table
6B89D470 Import Name Table
0 time date stamp
0 Index of first forwarder reference
3 LoadEnclaveData
1 InitializeEnclave
0 CreateEnclave
2 IsEnclaveTypeSupported
Then search all dlls in system dir or whatnot looking for those (cygwin bash shell here):
% for i in *.dll; do echo $i; dumpbin /exports $i/*.dll | grep -i enclave; done
...
kernelbase.dll
165 9F 0013B440 CreateEnclave = _CreateEnclave@32
782 30A 0013B490 InitializeEnclave = _InitializeEnclave@20
834 340 0013B4D0 IsEnclaveTypeSupported = _IsEnclaveTypeSupported@4
896 37E 0013B500 LoadEnclaveData = _LoadEnclaveData@36
...