summary refs log tree commit diff stats
path: root/lib/windows
Commit message (Collapse)AuthorAgeFilesLines
* some improvements for nimfixAraq2014-09-091-1/+1
|
* 'nimfix' improvements; FdSet is TFdSet againAraq2014-09-081-8/+8
|
* Added Windows asyncfile implementation.Dominik Picheta2014-09-051-8/+16
|
* updated iup.nim; made tests greenAraq2014-08-313-459/+456
|
* Winlean and threads case sensitivity fixes.Dominik Picheta2014-08-301-3/+3
|
* made windows.nim compatible with --cs:partialAraq2014-08-291-228/+228
|
* Nimrod renamed to NimAraq2014-08-287-7/+7
|
* big renameAraq2014-08-281-51/+58
|
* big renameAraq2014-08-281-23/+23
|
* big renameAraq2014-08-281-1/+3
|
* renamefestAraq2014-08-231-8/+8
|
* fixes #820Araq2014-08-131-208/+0
|
* More future debug info. Added new error code to SafeDisconn list.Dominik Picheta2014-08-091-0/+1
|
* renamed UINT in windows.nim to WINUINTCharlie2014-05-261-846/+846
|
* Manual merge of pull request #1138Clay Sweetser2014-05-241-2/+2
|
* Merge branch 'Windows' of git://github.com/enurlyx/Nimrod into enurlyx-WindowsClay Sweetser2014-05-241-7/+7
|\
| * Changed COLORREF from int to DWORD (32 bit long), so that it works also on ↵enurlyx2014-05-041-5/+5
| | | | | | | | 64bit Windows
| * 1) export UINTenurlyx2014-04-221-2/+2
| | | | | | | | 2) Fixed parameter of FillRect RECT -> var RECT
* | Merge branch 'devel' of https://github.com/Araq/Nimrod into develAraq2014-05-061-3/+3
|\ \
| * | DWORD -> PULONG for POverlapped.Dominik Picheta2014-05-031-2/+2
| | |
| * | Get rid unsafe pointer type in GetQueuedCompletionStatus.Dominik Picheta2014-04-301-1/+1
| | |
* | | some additions to winleanAraq2014-05-061-1/+9
|/ /
* | async might work now reliablyAraq2014-04-301-2/+2
| |
* | Merge pull request #1099 from Varriount/os/getFileInfoAndreas Rumpf2014-04-201-0/+4
|\ \ | |/ |/| Added os.getFileInfo procedure.
| * Fixed _get_osfhandle declaration.Clay Sweetser2014-04-161-1/+1
| |
| * Completed Linux/Posix implementation of getFileInfoClay Sweetser2014-04-161-0/+3
| | | | | | | | Moved parts of getFileInfo into a helper template.
| * Added Windows implementation of getFileInfo proceduresClay Sweetser2014-04-161-0/+1
| |
* | New concurrency model: next stepsAraq2014-04-191-1/+1
|/
* Disable async macro code output. Added some WSA error codes to winlean.Dominik Picheta2014-04-071-1/+6
|
* Fixed tasyncawait on Windows.Dominik Picheta2014-03-121-0/+1
| | | | | | Implicit registration of an fd now only occurs when a new socket is created (in socket() or accept()). This makes the implementation much simpler, changes to the linux version will follow.
* Resolved conflict.Dominik Picheta2014-02-091-3/+3
|
* capturing of an iterator works betterAraq2014-02-091-2/+2
|
* Added new sockets modules: asyncio2, net, and sockets2.Dominik Picheta2014-02-081-0/+77
|
* case consistency for -d:useWinAnsiAraq2014-02-051-3/+3
|
* bootstraps againAraq2014-02-021-4/+4
|
* Added symlink procsClay Sweetser2014-02-011-1/+17
|
* unittest module works againAraq2014-01-181-19/+0
|
* case consistency: next stepsAraq2013-12-291-14/+14
|
* case consistency part 4Araq2013-12-271-60/+60
|
* case consistency part 2Araq2013-12-271-1/+1
|
* case consistency part 1Araq2013-12-271-88/+96
|
* Further fixes (stupid kdiff automerge)Clay Sweetser2013-12-181-11/+19
|
* Revert "removed windows". Refs #698.Grzegorz Adam Hankiewicz2013-12-097-0/+28198
| | | | This reverts commit 5ab3d661440f42f0dc74970ec73a051dd2e2bfb5.
* removed windowsfowlmouth2013-12-037-28198/+0
|
* Implemented boolean socket options.Dominik Picheta2013-10-301-0/+13
| | | | Added reuseAddr for httpserver and scgi.
* Fixed sockets on Win32.Dominik Picheta2013-10-231-6/+2
|
* Fixed socket compilation problems on Windows.Dominik Picheta2013-10-231-8/+8
|
* Made TSocketHandle distinct and fixed problems it caused for SSL.Dominik Picheta2013-10-231-2/+10
|
* Added a TSocketHandle type to winlean.nim and posix.nimClay Sweetser2013-10-151-19/+19
| | | | Edited sockets.nim and asyncio.nim to use the new TSocketHandle type.
* Deprecated OSError, and modified it to require an explicit OS error code.Dominik Picheta2013-06-251-1/+1
| | | | The deprecated functions include the OSError and OSErrorMsg, the name did not change however the signature of the new functions did. They now require a TOSErrorCode value be passed to them. This value can be retrieved using OSLastError. The reason this was done is because on Windows any win api call can reset the last error code to 0, this change allows the user to immediately grab the error code and worry about the string representation later if needs be.