Staging
v0.8.1
https://github.com/python/cpython
Revision 7348bad5b5a8464be1eed04745d77b4f3c8edd76 authored by cvs2svn on 03 November 2004, 06:21:37 UTC, committed by cvs2svn on 03 November 2004, 06:21:37 UTC
1 parent 9f41f3a
Raw File
Tip revision: 7348bad5b5a8464be1eed04745d77b4f3c8edd76 authored by cvs2svn on 03 November 2004, 06:21:37 UTC
This commit was manufactured by cvs2svn to create tag 'r24b2'.
Tip revision: 7348bad
WETabs.h
/*
 *	WETabs.h
 *
 *	WASTE TABS PACKAGE
 *	Public C/C++ interface
 *
 *	version 1.3.2 (August 1996)
 *
 *	Copyright (c) 1993-1998 Marco Piovanelli
 *	All Rights Reserved
 *
 */


#ifndef WITHOUT_FRAMEWORKS
#include <Carbon/Carbon.h>
#endif
#ifndef _WASTE_
#include "WASTE.h"
#endif

enum {
	kMinTabSize				=	1,		//	must be greater than zero
	kDefaultTabSize			=	32,
	kMaxTabSize				=	1024	//	arbitrary value
};

#ifdef __cplusplus
extern "C" {
#endif

pascal OSErr WEInstallTabHooks(WEReference we);
pascal OSErr WERemoveTabHooks(WEReference we);
pascal Boolean WEIsTabHooks(WEReference we);
pascal SInt16 WEGetTabSize(WEReference we);
pascal OSErr WESetTabSize(SInt16 tabWidth, WEReference we);

#ifdef __cplusplus
}
#endif
back to top