home *** CD-ROM | disk | FTP | other *** search
- // Microworks ObjectMate 2.6
- //
- // ObjectMate Installation
- //
- // Copyright 1992-94 Microworks Sydney, Australia.
- //
- // INSTALL.H
-
- #include <windowsx.h>
- #include <stdlib.h>
- #include <stdio.h>
- #include <ctype.h>
- #include <dir.h>
- #include <dos.h>
- #include <lzexpand.h>
- #include <shellapi.h>
- #include <memory.h>
-
- // Current SFX200.DLL version number - 2.6
-
- const UINT SFXVERSION = 0x0260;
-
- // Global varibles
-
- BOOL DllLoaded;
- char FromDrive[MAXDRIVE];
- char FromDir[MAXPATH];
- HINSTANCE LZLib;
- HWND SplashWnd;
-
- // Window functions
-
- LRESULT CALLBACK _export DefaultProc(HWND hDlg, UINT message, WPARAM wParam , LPARAM lParam);
- BOOL CALLBACK _export SplashProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam);
-
- // Support functions
-
- void CenterWindow(HWND hWndCenter);
- void ErrorMsg(char far* msg);
- void HourGlass(int on);
- int ExpandFile(char* drive, char* dir, char far* filename);
-
-
-