File: Protect.h

package info (click to toggle)
capi4hylafax 1%3A01.02.03-10sarge2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 2,856 kB
  • ctags: 2,966
  • sloc: cpp: 20,126; sh: 7,703; makefile: 215; perl: 36
file content (82 lines) | stat: -rw-r--r-- 2,698 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/*---------------------------------------------------------------------------*\

    Copyright (C) 2000 AVM GmbH. All rights reserved.

    This program is free software; you can redistribute it and/or
    modify it under the terms of the GNU General Public License
    as published by the Free Software Foundation; either version 2
    of the License, or (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY, without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, and WITHOUT
    ANY LIABILITY FOR ANY DAMAGES arising out of or in connection
    with the use or performance of this software. See the
    GNU General Public License for further details.

\*---------------------------------------------------------------------------*/

#ifndef _PROTECT_H_
#define _PROTECT_H_

#include "aTypes.h"

/*===========================================================================*\
\*===========================================================================*/
#ifdef DONT_USE_PROTECT_FEATURE

#define Protect_Define(name)
#define Protect_DefineInit(name)

#define Protect_InitHandle(p)
#define Protect_IsCreated(p)    vTrue

#define Protect_Create(p)       vTrue
#define Protect_Destroy(p)

#define Protect_BeginRead(p)
#define Protect_EndRead(p)

#define Protect_BeginWrite(p)
#define Protect_EndWrite(p)


/*===========================================================================*\
\*===========================================================================*/
#else // DONT_USE_PROTECT_FEATURE

typedef tHandle thProtect;

#define Protect_Define(name)        thProtect name
#define Protect_DefineInit(name)    thProtect name = vIllegalHandle

void  Protect_InitHandle (thProtect *pProtect);
tBool Protect_IsCreated  (thProtect Protect);

tBool Protect_Create     (thProtect *pProtect);
void  Protect_Destroy    (thProtect *pProtect);

void  Protect_BeginRead  (thProtect protect);
void  Protect_EndRead    (thProtect protect);

void  Protect_BeginWrite (thProtect protect);
void  Protect_EndWrite   (thProtect protect);


/*===========================================================================*\
\*===========================================================================*/

inline void Protect_InitHandle (thProtect *pProtect) {
    *pProtect = vIllegalHandle;
}

inline tBool Protect_IsCreated (thProtect Protect) {
    return (Protect != vIllegalHandle);
}

/*===========================================================================*\
\*===========================================================================*/

#endif // DONT_USE_PROTECT_FEATURE

#endif