aboutsummaryrefslogtreecommitdiff
path: root/lib/Utils.Cryptography/monocypher/util.h
blob: 7a9f638c6791661d6f101bf1561b481c2a48dc2e (plain)
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
/*
* Copyright (c) 2024 Vaughn Nugent
*
* vnlib_monocypher 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.
*
* vnlib_monocypher 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. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with vnlib_monocypher. If not, see http://www.gnu.org/licenses/.
*/

#pragma once
#ifndef VN_MONOCYPHER_UTIL_H
#define VN_MONOCYPHER_UTIL_H

#if defined(_MSC_VER) || defined(WIN32) || defined(_WIN32)
    #define _P_IS_WINDOWS
#endif

//Set api export calling convention (allow used to override)
#ifndef VNLIB_CC
    #ifdef _P_IS_WINDOWS
        //STD for importing to other languages such as .NET
        #define VNLIB_CC __stdcall
    #else
        #define VNLIB_CC 
    #endif
#endif // !NC_CC

#ifndef VNLIB_EXPORT	//Allow users to disable the export/impoty macro if using source code directly
    #ifdef VNLIB_EXPORTING
        #ifdef _P_IS_WINDOWS
            #define VNLIB_EXPORT __declspec(dllexport)
        #else
            #define VNLIB_EXPORT __attribute__((visibility("default")))
        #endif // _NC_IS_WINDOWS
    #else
        #ifdef _P_IS_WINDOWS
            #define VNLIB_EXPORT __declspec(dllimport)
        #else
            #define VNLIB_EXPORT
        #endif // _P_IS_WINDOWS
    #endif // !VNLIB_EXPORTING
#endif // !VNLIB_EXPORT

#ifndef _In_
#define _In_
#endif

#define ERR_INVALID_PTR -1
#define ERR_OUT_OF_MEMORY -2

#define TRUE 1
#define FALSE 0

#ifndef NULL
#define NULL 0
#endif /* !NULL */

#define VALIDATE_PTR(ptr) if (!ptr) return ERR_INVALID_PTR

#endif /* !VN_MONOCYPHER_UTIL_H */