Leaked source code of windows server 2003
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

  1. #ifndef _WRAPPER_H_
  2. #define _WRAPPER_H_
  3. #include <windows.h>
  4. #define RICHEDIT_CLASS10A "RICHEDIT" // Richedit 1.0
  5. extern "C"
  6. {
  7. LRESULT CALLBACK RichEdit32WndProc(
  8. HWND hWnd,
  9. UINT uMsg,
  10. WPARAM wParam,
  11. LPARAM lParam);
  12. }
  13. WNDPROC lpfnRichEditANSIWndProc;
  14. #endif