回答編集履歴

1

"#"を追記

2018/04/13 02:47

投稿

YomogiKOBO
YomogiKOBO

スコア187

test CHANGED
@@ -2,15 +2,21 @@
2
2
 
3
3
  ※"#"があるとみにくくなるようなので #を省略。。#ifdef ~#endif
4
4
 
5
+ ```
6
+
5
- ifdef ICV_BASE
7
+ #ifdef ICV_BASE
6
8
 
7
9
  include "ippicv.h"
8
10
 
9
- else
11
+ #else
10
12
 
11
13
  include "ippcore.h"
12
14
 
13
- endif
15
+ #endif
16
+
17
+ ```
18
+
19
+
14
20
 
15
21
 
16
22
 
@@ -18,17 +24,19 @@
18
24
 
19
25
  ippicv.hには
20
26
 
27
+ ```
21
28
 
29
+ #include "ippicv_l.h"
22
30
 
23
- include "ippicv_l.h"
31
+ #include "ippicv_defs.h"
24
32
 
25
- include "ippicv_defs.h"
33
+ #include "ippicv_types.h"
26
34
 
27
- include "ippicv_types.h"
35
+ #include "ippicv_redefs.h"
28
36
 
29
- include "ippicv_redefs.h"
37
+ #include "ippversion.h"
30
38
 
31
- include "ippversion.h"
39
+ ```
32
40
 
33
41
  とありますね。
34
42