Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix pointer types
Or whatever the hell they are called. Inadvertently set these wrong when |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
18f4d20e488ce26892e2eb1c2f8fb9f8 |
User & Date: | atomicules@lavabit.com 2013-07-10 12:29:27 |
Context
2013-07-10
| ||
13:12 |
Remove unnecessary items from arrays
At least I don't think these are needed? check-in: e4e256f8b0 user: atomicules@lavabit.com tags: origin/master, trunk | |
12:29 |
Fix pointer types
Or whatever the hell they are called. Inadvertently set these wrong when | |
2013-07-08
| ||
09:03 | Add starter of a README file check-in: 91deaaa03b user: atomicules@lavabit.com tags: origin/master, trunk | |
Changes
Changes to exposurses.c.
︙ | ︙ | |||
48 49 50 51 52 53 54 | int main(){ ITEM **iso_items; ITEM **shutter_items; ITEM **aperture_items; int c; MENU *iso_menu; MENU *shutter_menu; | | | | 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 | int main(){ ITEM **iso_items; ITEM **shutter_items; ITEM **aperture_items; int c; MENU *iso_menu; MENU *shutter_menu; MENU *aperture_menu; MENU **menu; WINDOW *iso_win; WINDOW *shutter_win; WINDOW *aperture_win; WINDOW **win; int n_iso, i; int n_shutter, j; int n_aperture, k; /* Initialize curses */ initscr(); |
︙ | ︙ |