home *** CD-ROM | disk | FTP | other *** search
- '** Uncomment next line for single product installer.
- '** (Remove first "'". There are two "'" if commented out.
- ''$DEFINE SINGLEPROD
-
- '** Strings below need to be translated. **
-
- CONST MAINTITLE$ = "FrameMaker 4 Setup (P1h)" '*** change version
- CONST PROGGROUP$ = "Frame Products"
- CONST ERRMSG$ = "Setup sources were corrupted."
- CONST ERRTITLE$ = "Setup Message"
-
- '** Strings above need to be translated. **
-
- CONST INFFILE$ = "NETFRAME.INF"
- CONST MAKERITEM$ = "FrameMaker 4" '*** change version
- CONST BUILDERITEM$ = "FrameBuilder"
-
- '*************************************************************************
- '************************ Frame API's **********************************
- '*************************************************************************
-
- DECLARE FUNCTION ValidateRegNo LIB "mscuistf.dll" (regNo$) AS INTEGER
- DECLARE FUNCTION UpdateResources LIB "mscuistf.dll" (DLLPath$,UserName$,OrgName$,RegNo$,Demo%) AS INTEGER
- DECLARE FUNCTION GetFields LIB "mscuistf.dll" (UserName AS STRING *30,OrgName AS STRING *30,RegNo AS STRING *30, DLLPath$) AS INTEGER
-
- '*************************************************************************
- '************************ Wrapper Declarations **************************
- '*************************************************************************
-
- DECLARE FUNCTION FMValidateRegNo (regnum$) AS INTEGER
- DECLARE FUNCTION FMUpdateRes (fmDLL$, uname$, org$, reg$, demostat%) AS INTEGER
- DECLARE FUNCTION FMGetFields (uname AS STRING *30, org AS STRING *30, reg AS STRING *30, fmDLL$) AS INTEGER
- '*************************************************************************
- '***************** Wrapper Definitions *********************************
- '*************************************************************************
-
- FUNCTION FMValidateRegNo(regnum$) STATIC AS INTEGER
- FMValidateRegNo = ValidateRegNo(regnum$)
- END FUNCTION
-
-
- '**************************************************************************
- FUNCTION FMUpdateRes(fmDLL$,uname$,org$,reg$,demostat%) STATIC AS INTEGER
- FMUpdateRes = UpdateResources(fmDLL$,uname$,org$,reg$,demostat%)
- END FUNCTION
-
- '**************************************************************************
- FUNCTION FMGetFields(uname AS STRING *30,org AS STRING *30,reg AS STRING *30, fmDLL$) STATIC AS INTEGER
- FMGetFields = GetFields(uname,org,reg,fmDLL$)
- END FUNCTION
-