mshtmlview.h 523 B

1234567891011121314151617181920212223
  1. #ifndef MSHTMLVIEW_H
  2. #define MSHTMLVIEW_H
  3. extern "C"{
  4. int msHtmlCreate( void *gadget,wchar_t *wndclass,int hwnd,int flags );
  5. void msHtmlGo( int handle,wchar_t *url );
  6. void msHtmlRun( int handle,wchar_t *script );
  7. void msHtmlSetShape( int handle,int x,int y,int w,int h );
  8. void msHtmlSetVisible( int handle,int visible );
  9. void msHtmlSetEnabled( int handle,int enabled );
  10. int msHtmlActivate(int handle,int cmd);
  11. int msHtmlStatus(int handle);
  12. int msHtmlHwnd( int handle );
  13. void *msHtmlBrowser( int handle );
  14. };
  15. #endif