~ubuntu-branches/ubuntu/wily/gargoyle-free/wily-proposed

« back to all changes in this revision

Viewing changes to tads/tads3/core.h

  • Committer: Bazaar Package Importer
  • Author(s): Sylvain Beucler
  • Date: 2009-09-11 20:09:43 UTC
  • Revision ID: james.westby@ubuntu.com-20090911200943-idgzoyupq6650zpn
Tags: upstream-2009-08-25
ImportĀ upstreamĀ versionĀ 2009-08-25

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* 
 
2
 *   Copyright (c) 2002 by Michael J. Roberts.  All Rights Reserved.
 
3
 *   
 
4
 *   Please see the accompanying license file, LICENSE.TXT, for information
 
5
 *   on using and copying this software.  
 
6
 */
 
7
/*
 
8
Name
 
9
  core.h - sample T3 source code defining an intrinsic function set
 
10
  for the 'vmcore.cpp' sample
 
11
Function
 
12
  
 
13
Notes
 
14
  
 
15
Modified
 
16
  04/06/02 MJRoberts  - Creation
 
17
*/
 
18
 
 
19
#ifndef CORE_H
 
20
#define CORE_H
 
21
 
 
22
intrinsic 'core-sample/010000'
 
23
{
 
24
    /* display the given string */
 
25
    displayText(str);
 
26
    
 
27
    /* read a line of text from the keyboard, and return it as a string */
 
28
    readText();
 
29
}
 
30
 
 
31
#endif /* CORE_H */