This commit is contained in:
Timothee Cour
2018-12-03 14:25:04 -08:00
parent af7d758cfc
commit 53147cc546

View File

@@ -2419,7 +2419,7 @@ proc isHidden*(path: string): bool {.noNimScript.} =
let fileName = lastPathPart(path)
result = len(fileName) >= 2 and fileName[0] == '.' and fileName != ".."
proc processID*(): int =
proc processID*(): int {.noNimScript.} =
## return current process ID. See also ``osproc.processID(p: Process)``.
when defined(windows):
proc GetCurrentProcessId(): DWORD {.stdcall, dynlib: "kernel32",