This source file includes following definitions.
- lens_get_focus_pos
- lens_get_focus_pos_from_lens
- lens_get_target_distance
- DoMFLock
- UnlockMF
1 #include "../generic/wrappers.c"
2
3 long lens_get_focus_pos()
4 {
5 return _GetFocusLensSubjectDistance();
6 }
7
8 long lens_get_focus_pos_from_lens()
9 {
10 return _GetFocusLensSubjectDistanceFromLens();
11 }
12
13 long lens_get_target_distance()
14 {
15 return _GetCurrentTargetDistance();
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 int DoMFLock(void)
63 {
64 if (!camera_info.state.mode_play) {
65 _PT_MFOn();
66 return(1);
67 }
68 return(0);
69 }
70
71 int UnlockMF(void)
72 {
73 if (!camera_info.state.mode_play) {
74 _PT_MFOff();
75 return(1);
76 }
77 return(0);
78 }