diff options
author | nyamatongwe <devnull@localhost> | 2000-07-21 13:36:30 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2000-07-21 13:36:30 +0000 |
commit | c44214dd05ae2d4f91678353ecb9cd5a88921649 (patch) | |
tree | 0b021201d15fe67ec159dd2877995ef6b5019927 /src/ScintillaBase.h | |
parent | 110c23982d9c0d78bc3bd25dc7210b184d658c65 (diff) | |
download | scintilla-mirror-c44214dd05ae2d4f91678353ecb9cd5a88921649.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.h | 4 |
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 |