-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathitisal.h
55 lines (46 loc) · 1.07 KB
/
itisal.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
48
49
50
51
52
53
54
55
/*
___ ___ ______ _ _
| \/ | | ___ \ (_) | |
| . . |_ __ _ __ ______| |_/ / __ ___ _ ___ ___| |_
| |\/| | '_ \| '_ \______| __/ '__/ _ \| |/ _ \/ __| __|
| | | | |_) | |_) | | | | | | (_) | | __/ (__| |_
\_| |_/ .__/| .__/ \_| |_| \___/| |\___|\___|\__|
| | | | _/ |
|_| |_| |__/
[+]MPP is a C-based programming language that allows you to code more easily in Darija.
[+]Author : Naper & XDarker
[+]Web site : www.naper.eu
[+]Web site : mpp-project.org
*/
#ifndef __ALWANE_H__
#define __ALWANE_H__
#ifdef WIN32
#define WIN_METHOD 0
#else
#define LINUX_METHOD 1
#endif
#ifdef BUILD_DLL
#define DLL_EXPORT __declspec(dllexport)
#else
#define DLL_EXPORT __declspec(dllimport)
#endif
#ifdef __cplusplus
extern "C"
{
#endif
typedef struct sql{
joumla host;
joumla user;
joumla pass;
joumla mode;
joumla db;
}sql;
typedef struct chabaka{
ra9m s;
joumla smaya;
}chabaka;
chabaka cjareb();
#ifdef __cplusplus
}
#endif
#endif