mshtmlview.h 659 B

123456789101112131415161718192021222324252627
  1. #ifndef MSHTMLVIEW_H
  2. #define MSHTMLVIEW_H
  3. #include "brl.mod/blitz.mod/blitz.h"
  4. struct HTMLView;
  5. extern "C"{
  6. HTMLView * msHtmlCreate( BBObject *gadget,wchar_t *wndclass,HWND hwnd,int flags );
  7. void msHtmlGo( HTMLView * view,wchar_t *url );
  8. void msHtmlRun( HTMLView * view,wchar_t *script );
  9. void msHtmlSetShape( HTMLView * view,int x,int y,int w,int h );
  10. void msHtmlSetVisible( HTMLView * view,int visible );
  11. void msHtmlSetEnabled( HTMLView * view,int enabled );
  12. int msHtmlActivate(HTMLView * view,int cmd);
  13. int msHtmlStatus(HTMLView * view);
  14. HWND msHtmlHwnd( HTMLView * view);
  15. void msHtmlBrowser( HTMLView * view, IWebBrowser2 ** browser);
  16. };
  17. #endif