mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
688c05301a
Wraps some RichEdit control functionality on an Edit control. It uses a free implementation of an RTF parser written by Paul DuBois http://www.primate.wisc.edu/software/RTF/ which I modified a bit to work with the control.
17 lines
307 B
C
17 lines
307 B
C
/*
|
|
* Ritch Edit 32 class extra info
|
|
*
|
|
* Copyright 2000 Jean-Clauyde Batista
|
|
*
|
|
*/
|
|
|
|
#ifndef __WINE_RICHED32_H
|
|
#define __WINE_RICHED32_H
|
|
|
|
#include "richedit.h"
|
|
|
|
extern HMODULE RICHED32_hModule;
|
|
extern VOID RICHED32_Register (VOID);
|
|
extern VOID RICHED32_Unregister (VOID);
|
|
|
|
#endif /* __WINE_RICHED32_H */
|