| Rev | Line | |
|---|
| [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] | 19 | void edge_overlay(); |
|---|
| [580] | 20 | void save_edge_overlay(void); |
|---|
| 21 | void load_edge_overlay( const char* ); |
|---|
| [1467] | 22 | #endif |
|---|
| [515] | 23 | |
|---|
| 24 | #endif |
|---|
Note: See
TracBrowser
for help on using the repository browser.