source: branches/reyalp-flt/core/edgeoverlay.h @ 1467

Revision 1467, 605 bytes checked in by reyalp, 18 months ago (diff)

apply 1459_elf3.patch from tsvstar in http://chdk.setepontos.com/index.php?topic=847.msg77723#msg77723
workaround in kbd.c for trunk changesets 1461 and 1464
set eol-style props

  • Property svn:eol-style set to native
RevLine 
[515]1#ifndef EDGE_OVERLAY_H
2#define EDGE_OVERLAY_H
3
[580]4// steps for up/down/left/right moving the overlay in ALT mode
[515]5#define XINC 6
6#define YINC 2
7
[580]8// if you change this, remember to change the mkdir in main too
9#define EDGE_SAVE_DIR "A/CHDK/EDGE"
10
[1467]11// Defines of exported to chdk symbols
12#ifdef THIS_IS_CHDK_CORE
13        // This section is for CHDK core
14        extern void (*edge_overlay)();
15        extern void (*save_edge_overlay)(void);
16        extern void (*load_edge_overlay)( const char* );
17#else
18        // This section is for module
[515]19void edge_overlay();
[580]20void save_edge_overlay(void);
21void load_edge_overlay( const char* );
[1467]22#endif
[515]23
24#endif
Note: See TracBrowser for help on using the repository browser.