refactor: replace all typedef with using (#10594)

This commit is contained in:
Kamikadze 2025-05-31 18:02:02 +05:00 committed by GitHub
parent af2fdb5d58
commit 4078e1d17c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 31 additions and 31 deletions

View file

@ -58,8 +58,8 @@ struct SDispatchResult {
std::string error;
};
typedef int64_t WINDOWID;
typedef int64_t MONITORID;
typedef int64_t WORKSPACEID;
using WINDOWID = int64_t;
using MONITORID = int64_t;
using WORKSPACEID = int64_t;
typedef std::function<void(void*, SCallbackInfo&, std::any)> HOOK_CALLBACK_FN;
using HOOK_CALLBACK_FN = std::function<void(void*, SCallbackInfo&, std::any)>;