home *** CD-ROM | disk | FTP | other *** search
/ Visual Home / Visual_Home_Books_That_Work_1996.iso / dll / wisedll.h < prev   
Text File  |  1995-07-12  |  702b  |  16 lines

  1. typedef struct {
  2.    WORD wStructLen;    // The length of the structure
  3.    HWND hWnd;          // Handle to main window
  4.    WORD wMaxReplaces;  // Maximum number of replaces
  5.    WORD wRepNameWidth; // The width of a replace name
  6.    WORD wRepStrWidth;  // The width of each replace string
  7.    WORD wCurrReps;     // Current number of replace strings
  8.    char *lpszRepName;  // The actual replace names
  9.    char *lpszRepStr;   // The actual replace values
  10.    BYTE bRunMode;      // The installation mode
  11.    HFILE fLogFile;     // A file handle to the log file
  12.    char *lpszParam;    // String parameter from Wise Installation System
  13. } DLLCALLPARAMS;
  14.  
  15. typedef DLLCALLPARAMS far *LPDLLCALLPARAMS;
  16.