summaryrefslogtreecommitdiff
path: root/modules/call_scilab/examples/basicExamples/GetLastJob.c
blob: 4db3c746dcd65275c3cf310d1e698fffa2e520cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/*
 * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
 * Copyright (C) DIGITEO - 2009 - Sylvestre LEDRU
 *
 * This file is released under the 3-clause BSD license. See COPYING-BSD.
 *
 */
#include <stdio.h>
#include <string.h>

#include "call_scilab.h" /* Provide functions to call Scilab engine */

/*------------------------------------------------------------*/
int main(void)
{
#ifdef _MSC_VER
    if ( StartScilab(NULL, NULL, NULL) == FALSE )
#else
    if ( StartScilab(getenv("SCI"), NULL, NULL) == FALSE )
#endif
    {
        fprintf(stderr, "Error while calling StartScilab\n");
        return -1;
    }


    int code = SendScilabJob("failedMyCurrentJob=%pi*3/0");
    if (code != 0)
    {
        char lastjob[4096];
        if (GetLastJob(lastjob, 4096))
        {
            printf("Failed command: %s\n", lastjob);
        }
    }

    if ( TerminateScilab(NULL) == FALSE )
    {
        fprintf(stderr, "Error while calling TerminateScilab\n");
        return -2;
    }
    return 0;
}
/*------------------------------------------------------------*/