home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic 4 Unleashed / Visual_Basic_4_Unleashed_SAMS_Publishing_1995.iso / tedevkit / ctrl.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-03-10  |  777 b   |  18 lines

  1. #include "ctrl_dlg.h"
  2.  
  3. #define IDM_EDIT        100
  4.  
  5. HINSTANCE hInst,hPrevInst;          // Stores the current and previous instances 
  6. HINSTANCE hTerInst;                 // TER DLL handle
  7. HGLOBAL hBuf=0;                     // data buffer handle
  8. long    BufferLen;                  // data buffer length
  9. /*****************************************************************************
  10.     Prototypes for the internal demo functions.
  11. ******************************************************************************/
  12. int PASCAL WinMain(HINSTANCE, HINSTANCE, LPSTR, int);
  13. int  CALLBACK _export DemoEditDlg(HWND, UINT, WPARAM, LPARAM);
  14. BOOL InitApplication(HINSTANCE);
  15. BOOL InitInstance(HINSTANCE, int);
  16. long CALLBACK _export DemoWndProc(HWND, UINT, WPARAM, LPARAM);
  17.  
  18.