You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
314 B
20 lines
314 B
#ifndef _WRAPPER_H_
|
|
#define _WRAPPER_H_
|
|
#include <windows.h>
|
|
|
|
#define RICHEDIT_CLASS10A "RICHEDIT" // Richedit 1.0
|
|
|
|
extern "C"
|
|
{
|
|
LRESULT CALLBACK RichEdit32WndProc(
|
|
HWND hWnd,
|
|
UINT uMsg,
|
|
WPARAM wParam,
|
|
LPARAM lParam);
|
|
}
|
|
|
|
|
|
WNDPROC lpfnRichEditANSIWndProc;
|
|
|
|
|
|
#endif
|