-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.h
47 lines (32 loc) · 1.07 KB
/
main.h
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
/*
-- ----------------------------------------------------------------------
-- Project: DLL creation
--
-- Author: Hamza Qureshi
--
-- File name: STC.h
--
-- Rev.: 1.0
-- Creation date: DEC 2023
--
-- ---------------------------------------------------------------------
Purpose of this module: MAIN MODULE
----------Main body--------------
Comments:
WARININGS
---------------------------------------------------------------------------
*/
// RDU_1_0Dlg.cpp : implementation file
//
#pragma once
// .h - Contains declarations of math functions
#ifdef STC_EXPORTS
#define STC_API __declspec(dllexport)
#else
#define STC_API __declspec(dllimport)
#endif
#include <string>
#define API_ENDPOINT "http://127.0.0.1:5000/encryption_key"
extern "C" STC_API const char* log_data_parser();
extern "C" STC_API std::string decrypt_each_record(const char* table_name, const char* record);
extern "C" STC_API const char * test_decrypt_each_record(const char* table_name, const char* record);