summaryrefslogtreecommitdiff
path: root/winerrors.md
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-04-01 16:04:23 -0400
committerPietro Gagliardi <[email protected]>2014-04-01 16:04:23 -0400
commita003ff62d518dcd5bfedb219ecae26fe89ae9af3 (patch)
treeadb036c2c5eafc23f644ab66d34470a48bddd55d /winerrors.md
parent14770e890aba8fb40b97a05fa27c25906555df95 (diff)
Removed winerrors.md because I screwed it ages ago.
Diffstat (limited to 'winerrors.md')
-rw-r--r--winerrors.md9
1 files changed, 0 insertions, 9 deletions
diff --git a/winerrors.md b/winerrors.md
deleted file mode 100644
index 8fe2cf3..0000000
--- a/winerrors.md
+++ /dev/null
@@ -1,9 +0,0 @@
-- all SendMessage() calls
-- BM_GETCHECK (sysData.isChecked())
-- WM_GETTEXTLENGTH (LRESULT is signed but we treat it as unsigned and MSDN says nothing about error returns) (sysData.text())
-- WM_GETTEXT (WM_GETTEXTLENGTH docs say its result may be larger than the actual length, so we can't use that) (sysData.text())
-- CB_GETCURSEL/LB_GETCURSEL (sysData.selectedIndex())
-- LB_GETSELCOUNT/LB_GETSELITEMS (LB_ERR is returned if this is a single-selection listbox; are there actual errors?) (sysData.selectedIndices())
-- LB_GETTEXTLEN/LB_GETTEXT (LB_ERR is returned if the given index is invalid, but since we get indices from LB_GETSELITEMS this shouldn't happen; are there actual errors?) (sysData.selectedTexts())
-- PeekMessage(), TranslateMessage(), DispatchMessage() (the first one is odd as GetMessage() can return an error but PeekMessage() doesn't?) (msgloopstep())
-- GetStartupInfoW() (MSDN explicitly says this function does not fail... oh really? well I suppose it cannot fail since it returns something all processes must have to begin with) (getWinMainnCmdShow())