diff options
author | pommicket <pommicket@gmail.com> | 2023-01-04 23:36:33 -0500 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2023-01-04 23:36:50 -0500 |
commit | 8d1770423470d6f6384e258b9e27056a6dda8a04 (patch) | |
tree | d72b0298bfe928c4327401c34109c50b3d0e2125 /lsp.h | |
parent | d7cd9edb84d9403eca0d4caae68815c12c560164 (diff) |
finished documenting ted.h
Diffstat (limited to 'lsp.h')
-rw-r--r-- | lsp.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -8,8 +8,11 @@ #include "ds.h" #include "os.h" +// a document ID. 0 is a valid document ID, currently. typedef u32 LSPDocumentID; +// ID of an LSP server. a server's ID is never 0. typedef u32 LSPID; +// a request ID. this is unique across all servers. a request's ID is never 0. typedef u32 LSPRequestID; typedef struct SDL_mutex *LSPMutex; typedef struct SDL_semaphore *LSPSemaphore; |