aboutsummaryrefslogtreecommitdiff
path: root/src/zencore/include
diff options
context:
space:
mode:
authorDan Engelbrecht <[email protected]>2025-09-26 10:26:34 +0200
committerGitHub Enterprise <[email protected]>2025-09-26 10:26:34 +0200
commit347153218dd09e3806e5b27eb51f538768f27035 (patch)
tree81ef102cc116ed2c751e1af91d83db32ffa8d369 /src/zencore/include
parentMerge pull request #509 from ue-foundation/zs/put-overwrite-policy-response (diff)
downloadzen-347153218dd09e3806e5b27eb51f538768f27035.tar.xz
zen-347153218dd09e3806e5b27eb51f538768f27035.zip
new append op rpc method (#511)
- Feature: New `/prj/{project}/{oplog}/rpc` endpoint method `appendops` to send an array of oplog ops and receiving a list of `need` for attachments not present - Feature: Added `usingtmpfiles` boolean field to `/prj/{project}/{oplog}/rpc` method `putchunks` to be explicit about allowing move of temp attachment files - Improvement: Added additional validation of compact binary objects when reading from disk/receiving from client - Improvement: Windows: Added fallback code to use standard `MoveFile` api when rename via `SetFileInformationByHandle` fails in `MoveToFile` (used by filecas)
Diffstat (limited to 'src/zencore/include')
-rw-r--r--src/zencore/include/zencore/process.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/zencore/include/zencore/process.h b/src/zencore/include/zencore/process.h
index 98d352db6..04b79a1e0 100644
--- a/src/zencore/include/zencore/process.h
+++ b/src/zencore/include/zencore/process.h
@@ -33,6 +33,7 @@ public:
ZENCORE_API bool Terminate(int ExitCode);
ZENCORE_API void Reset();
[[nodiscard]] inline int Pid() const { return m_Pid; }
+ [[nodiscard]] inline void* Handle() const { return m_ProcessHandle; }
private:
void* m_ProcessHandle = nullptr;