mirror of
https://github.com/ctm/executor.git
synced 2026-03-12 17:41:55 +00:00
All the Executor source as-is from the subversion tree it was last worked on.
This commit is contained in:
27
src/include/ThinkC.h
Normal file
27
src/include/ThinkC.h
Normal file
@@ -0,0 +1,27 @@
|
||||
#if !defined (__THINKCDOTH__)
|
||||
#define __THINKCDOTH__
|
||||
/*
|
||||
* Copyright 1990 by Abacus Research and Development, Inc.
|
||||
* All rights reserved.
|
||||
*
|
||||
* $Id: ThinkC.h 63 2004-12-24 18:19:43Z ctm $
|
||||
*/
|
||||
|
||||
|
||||
#if !defined (__STDC__)
|
||||
extern void CDebugStr();
|
||||
#else /* __STDC__ */
|
||||
extern void CDebugStr( StringPtr p );
|
||||
#endif /* __STDC__ */
|
||||
|
||||
/* DO NOT DELETE THIS LINE */
|
||||
#if !defined (__STDC__)
|
||||
extern StringPtr CtoPstr();
|
||||
extern char *PtoCstr();
|
||||
extern void DebugStr();
|
||||
#else /* __STDC__ */
|
||||
extern StringPtr CtoPstr( char *str );
|
||||
extern char *PtoCstr( StringPtr str );
|
||||
extern pascal trap void C_DebugStr( StringPtr p ); extern pascal trap void P_DebugStr( StringPtr p);
|
||||
#endif /* __STDC__ */
|
||||
#endif /* __THINKCDOTH__ */
|
||||
Reference in New Issue
Block a user