home *** CD-ROM | disk | FTP | other *** search
/ Stars of Shareware: Programmierung / SOURCE.mdf / programm / windows / c / mobjm260 / install.h_ / install.h
Encoding:
C/C++ Source or Header  |  1994-09-06  |  950 b   |  44 lines

  1. //    Microworks ObjectMate  2.6
  2. //
  3. //    ObjectMate Installation
  4. //
  5. //    Copyright 1992-94 Microworks Sydney, Australia.
  6. //
  7. //  INSTALL.H
  8.  
  9. #include <windowsx.h>
  10. #include <stdlib.h>
  11. #include <stdio.h>
  12. #include <ctype.h>
  13. #include <dir.h>
  14. #include <dos.h>
  15. #include <lzexpand.h>
  16. #include <shellapi.h>
  17. #include <memory.h>
  18.  
  19. //    Current SFX200.DLL version number - 2.6
  20.  
  21. const UINT SFXVERSION = 0x0260;
  22.  
  23. //    Global varibles
  24.  
  25. BOOL      DllLoaded;
  26. char      FromDrive[MAXDRIVE];
  27. char      FromDir[MAXPATH];
  28. HINSTANCE LZLib;
  29. HWND      SplashWnd;
  30.  
  31. // Window functions
  32.  
  33. LRESULT CALLBACK _export DefaultProc(HWND hDlg, UINT message, WPARAM wParam , LPARAM lParam);
  34. BOOL CALLBACK _export SplashProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam);
  35.  
  36. // Support functions
  37.  
  38. void CenterWindow(HWND hWndCenter);
  39. void ErrorMsg(char far* msg);
  40. void HourGlass(int on);
  41. int  ExpandFile(char* drive, char* dir, char far* filename);
  42.  
  43.  
  44.