~ubuntu-branches/ubuntu/hoary/scilab/hoary

« back to all changes in this revision

Viewing changes to routines/wsci/common.h

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2005-01-09 22:58:21 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050109225821-473xr8vhgugxxx5j
Tags: 3.0-12
changed configure.in to build scilab's own malloc.o, closes: #255869

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* common.h */
 
2
 
 
3
/*
 
4
 * Copyright Enpc (Jean-Philippe Chancelier)
 
5
 */
 
6
 
 
7
#ifndef WSCI_COMMON
 
8
#define WSCI_COMMON
 
9
 
 
10
#include "../machine.h"
 
11
#include <stdarg.h>
 
12
 
 
13
/* wmenu.c - Menu */
 
14
 
 
15
extern void sciprint(char *fmt, ...);
 
16
extern void sciprint_nd(char *fmt, ...);
 
17
extern int sciprint2(int v,char *fmt,...);
 
18
extern void WinExit(void);
 
19
extern void Scistring(char *str);
 
20
extern int C2F(clearexit)(integer *n);
 
21
extern int ReadKey(void);
 
22
int WriteStr(char *s, FILE *file);
 
23
int WriteKey(char c, FILE *file);
 
24
 
 
25
/* winmain */ 
 
26
 
 
27
int InteractiveMode(void);
 
28
 
 
29
#endif