More installation info. Bump alpha version.
[python/dscho.git] / Mac / Wastemods / WETabs.h
blob0b2c0f3633df54af6693858c918d134170a13503
1 /*
2 * WETabs.h
4 * WASTE TABS PACKAGE
5 * Public C/C++ interface
7 * version 1.3.2 (August 1996)
9 * Copyright (c) 1993-1998 Marco Piovanelli
10 * All Rights Reserved
15 #ifndef WITHOUT_FRAMEWORKS
16 #include <Carbon/Carbon.h>
17 #endif
18 #ifndef _WASTE_
19 #include "WASTE.h"
20 #endif
22 enum {
23 kMinTabSize = 1, // must be greater than zero
24 kDefaultTabSize = 32,
25 kMaxTabSize = 1024 // arbitrary value
28 #ifdef __cplusplus
29 extern "C" {
30 #endif
32 pascal OSErr WEInstallTabHooks(WEReference we);
33 pascal OSErr WERemoveTabHooks(WEReference we);
34 pascal Boolean WEIsTabHooks(WEReference we);
35 pascal SInt16 WEGetTabSize(WEReference we);
36 pascal OSErr WESetTabSize(SInt16 tabWidth, WEReference we);
38 #ifdef __cplusplus
40 #endif