aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/ScintillaBase.h
diff options
context:
space:
mode:
authornyamatongwe <unknown>2000-07-21 13:36:30 +0000
committernyamatongwe <unknown>2000-07-21 13:36:30 +0000
commit642a1a3531a028121777286b878541e014feac56 (patch)
tree0b021201d15fe67ec159dd2877995ef6b5019927 /src/ScintillaBase.h
parent7dee13ea06c319bb9042b6964fd6fd3670dcb482 (diff)
downloadscintilla-mirror-642a1a3531a028121777286b878541e014feac56.tar.gz
Provide alternative symbols for all features defined in WinDefs.h to allow
for eventual removal of WinDefs.h.
Diffstat (limited to 'src/ScintillaBase.h')
-rw-r--r--src/ScintillaBase.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ScintillaBase.h b/src/ScintillaBase.h
index 23d31dfd1..80db7137e 100644
--- a/src/ScintillaBase.h
+++ b/src/ScintillaBase.h
@@ -48,7 +48,7 @@ protected:
virtual void AddCharUTF(char *s, unsigned int len);
void Command(int cmdId);
virtual void CancelModes();
- virtual int KeyCommand(UINT iMessage);
+ virtual int KeyCommand(unsigned int iMessage);
void AutoCompleteStart(int lenEntered, const char *list);
void AutoCompleteCancel();
@@ -67,7 +67,7 @@ protected:
virtual void NotifyStyleToNeeded(int endStyleNeeded);
public:
// Public so scintilla_send_message can use it
- virtual LRESULT WndProc(UINT iMessage, WPARAM wParam, LPARAM lParam);
+ virtual long WndProc(unsigned int iMessage, unsigned long wParam, long lParam);
};
#endif