Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
cfburns committed May 3, 2017
1 parent 8760c3e commit 795cf94
Show file tree
Hide file tree
Showing 83 changed files with 18,505 additions and 0 deletions.
Binary file added INUENDOINS.SAVF
Binary file not shown.
Binary file added Installation.pdf
Binary file not shown.
Binary file added Mapping Example/CUSMS Layout.pdf
Binary file not shown.
Binary file added Mapping Example/CUSMS Worksheet.pdf
Binary file not shown.
Binary file added Mapping Example/ENTPROP Listing.pdf
Binary file not shown.
Binary file added Mapping Example/SYNCUST Narrative.pdf
Binary file not shown.
46 changes: 46 additions & 0 deletions QCLSRC/CLRSSNMOM.CLLE
@@ -0,0 +1,46 @@
/******************************************************************************/
/* */
/* Inuendo 1.2 (Alpha release) - CLEAR SESSION MOMEMT */
/* */
/* Copyright (C) 2012, 2017 Christopher F. Burns Sr. */
/* c/o The Inuendo Project (http://inuendo.us). */
/* */
/* This program is free software: you can redistribute it and/or modify */
/* it under the terms of the GNU General Public License as published by */
/* the Free Software Foundation, either version 3 of the License, or */
/* (at your option) any later version. */
/* */
/* This program is distributed in the hope that it will be useful, */
/* but WITHOUT ANY WARRANTY; without even the implied warranty of */
/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */
/* GNU General Public License for more details. */
/* */
/* You should have received a copy of the GNU General Public License */
/* along with this program. If not, see <http://www.gnu.org/licenses/>. */
/* */
/******************************************************************************/
/* */
/* Use as command processing program for command CLRSSNMOM. */
/* */
/* Compile with CRTCLMOD and bind with CRTPGM, specifying BNDDIR('INUENDO'). */
/* */
/******************************************************************************/

PGM

DCL VAR(&SUCCESSF) TYPE(*LGL)
DCL VAR(&MESGTEXT) TYPE(*CHAR) LEN(80)

CALLPRC PRC(CLRSESSIONMOMENT) RTNVAL(&SUCCESSF)

IF COND(&SUCCESSF *EQ '1') THEN(CHGVAR +
VAR(&MESGTEXT) VALUE('Session Moment +
successfully cleared. Updates allowed.'))

ELSE CMD(CHGVAR VAR(&MESGTEXT) VALUE('Attempt to +
clear Session Moment failed.'))

SNDPGMMSG MSG(&MESGTEXT)

ENDPGM

54 changes: 54 additions & 0 deletions QCLSRC/DSPSSNMOM.CLLE
@@ -0,0 +1,54 @@
/******************************************************************************/
/* */
/* Inuendo 1.2 (Alpha release) - DISPLAY SESSION MOMEMT */
/* */
/* Copyright (C) 2012, 2017 Christopher F. Burns Sr. */
/* c/o The Inuendo Project (http://inuendo.us). */
/* */
/* This program is free software: you can redistribute it and/or modify */
/* it under the terms of the GNU General Public License as published by */
/* the Free Software Foundation, either version 3 of the License, or */
/* (at your option) any later version. */
/* */
/* This program is distributed in the hope that it will be useful, */
/* but WITHOUT ANY WARRANTY; without even the implied warranty of */
/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */
/* GNU General Public License for more details. */
/* */
/* You should have received a copy of the GNU General Public License */
/* along with this program. If not, see <http://www.gnu.org/licenses/>. */
/* */
/******************************************************************************/
/* */
/* Use as command processing program for command DSPSSNMOM. */
/* */
/* Compile with CRTCLMOD and bind with CRTPGM, specifying BNDDIR('INUENDO'). */
/* */
/******************************************************************************/

PGM

DCL VAR(&MOMTACTV) TYPE(*LGL)
DCL VAR(&SESSMOMT) TYPE(*CHAR) LEN(26)
DCL VAR(&MESGTEXT) TYPE(*CHAR) LEN(80)

CALLPRC PRC(SESSIONMOMENTACTIVE) RTNVAL(&MOMTACTV)

IF COND(&MOMTACTV *EQ '0') THEN(CHGVAR +
VAR(&MESGTEXT) VALUE('No session moment +
currently active.'))

ELSE CMD(DO)

CALLPRC PRC(GETSESSIONMOMENT) RTNVAL(&SESSMOMT)

CHGVAR VAR(&MESGTEXT) VALUE('Session Moment +
currently set to' *BCAT &SESSMOMT *TCAT +
'. Updates suspended.')

ENDDO

SNDPGMMSG MSG(&MESGTEXT)

ENDPGM

0 comments on commit 795cf94

Please sign in to comment.