21 lines
254 B
C
21 lines
254 B
C
|
/** \file
|
||
|
* \brief Web Browser Control
|
||
|
*
|
||
|
* See Copyright Notice in "iup.h"
|
||
|
*/
|
||
|
|
||
|
#ifndef __IUP_WEBBROWSER_H
|
||
|
#define __IUP_WEBBROWSER_H
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
Iclass* iupWebBrowserNewClass(void);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|