home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / C / BC_502 / CODE.PAK / TESTDLL.H
Encoding:
C/C++ Source or Header  |  1997-05-06  |  253 b   |  11 lines

  1. // Form interface definition
  2. #include <ole2.h>
  3.  
  4. class IMyObj: public IUnknown
  5. {
  6.   virtual int __stdcall GoNext() = 0;
  7.   virtual int __stdcall GoPrev() = 0;
  8. };
  9.  
  10. extern "C" HWND __import __stdcall MakeTestForm(HWND hwndParent, LPUNKNOWN &pObj);
  11.