summaryrefslogtreecommitdiff
path: root/winerrors.md
diff options
context:
space:
mode:
Diffstat (limited to 'winerrors.md')
-rw-r--r--winerrors.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/winerrors.md b/winerrors.md
index 542b527..fd401ca 100644
--- a/winerrors.md
+++ b/winerrors.md
@@ -5,3 +5,5 @@
- 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())