diff options
| author | Yong He <yonghe@outlook.com> | 2024-03-04 13:14:21 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-04 13:14:21 -0800 |
| commit | 01efe34dbef2be952298075abd8d36cc67ac9f4e (patch) | |
| tree | a3b73fa959ecf64a0d3a30a3f1ae43a8489b6c94 /slang.h | |
| parent | 16342f4a6baa2e50d390c8835879fc056497aa4c (diff) | |
Add `IGlobalSession::getSessionDescDigest`. (#3669)
* Add `IGlobalSession::getSessionDescDigest`.
* Fix.
Diffstat (limited to 'slang.h')
| -rw-r--r-- | slang.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -3737,6 +3737,10 @@ namespace slang */ virtual SLANG_NO_THROW SlangResult SLANG_MCALL parseCommandLineArguments( int argc, const char* const* argv, SessionDesc* outSessionDesc, ISlangUnknown** outAuxAllocation) = 0; + + /** Computes a digest that uniquely identifies the session description. + */ + virtual SLANG_NO_THROW SlangResult SLANG_MCALL getSessionDescDigest(SessionDesc* sessionDesc, ISlangBlob** outBlob) = 0; }; #define SLANG_UUID_IGlobalSession IGlobalSession::getTypeGuid() |
