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 int DoMFLock(void)
23 {
24 if (!camera_info.state.mode_play) {
25 _PT_MFOn();
26 return(1);
27 }
28 return(0);
29 }
30
31 int UnlockMF(void)
32 {
33 if (!camera_info.state.mode_play) {
34 _PT_MFOff();
35 return(1);
36 }
37 return(0);
38 }