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 return _GetFocusLensSubjectDistance();
5 }
6
7 long lens_get_focus_pos_from_lens() {
8 return _GetFocusLensSubjectDistanceFromLens();
9 }
10
11 long lens_get_target_distance() {
12 return _GetCurrentTargetDistance();
13 }
14
15
16
17
18
19 int DoMFLock(void)
20 {
21 if (!camera_info.state.mode_play) {
22 _PT_MFOn();
23 return(1);
24 }
25 return(0);
26 }
27
28 int UnlockMF(void)
29 {
30 if (!camera_info.state.mode_play) {
31 _PT_MFOff();
32 return(1);
33 }
34 return(0);
35 }