Changeset 1495 for branches/reyalp-flt
- Timestamp:
- 12/21/11 20:56:32 (17 months ago)
- Location:
- branches/reyalp-flt
- Files:
-
- 2 edited
-
Makefile (modified) (1 diff)
-
core/modules/module_inspector.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/reyalp-flt/Makefile
r1488 r1495 121 121 zip -9 $(topdir)bin/$(PLATFORM)-$(PLATFORMSUB)-$(BUILD_NUMBER)-full$(STATE).zip $(topdir)CHDK/SCRIPTS/EXAM/* > $(DEVNULL) 122 122 zip -9 $(topdir)bin/$(PLATFORM)-$(PLATFORMSUB)-$(BUILD_NUMBER)-full$(STATE).zip $(topdir)CHDK/SCRIPTS/TEST/* > $(DEVNULL) 123 zip -9 $(topdir)bin/$(PLATFORM)-$(PLATFORMSUB)-$(BUILD_NUMBER)-full$(STATE).zip $(topdir)CHDK/SCRIPTS/4Pack/* > $(DEVNULL)124 zip -9 $(topdir)bin/$(PLATFORM)-$(PLATFORMSUB)-$(BUILD_NUMBER)-full$(STATE).zip $(topdir)CHDK/SCRIPTS/4Pack/Lua/* > $(DEVNULL)125 zip -9 $(topdir)bin/$(PLATFORM)-$(PLATFORMSUB)-$(BUILD_NUMBER)-full$(STATE).zip $(topdir)CHDK/SCRIPTS/4Pack/uBasic/* > $(DEVNULL)126 123 zip -9 $(topdir)bin/$(PLATFORM)-$(PLATFORMSUB)-$(BUILD_NUMBER)-full$(STATE).zip $(topdir)CHDK/SCRIPTS/EDITOR/* > $(DEVNULL) 127 124 zip -9 $(topdir)bin/$(PLATFORM)-$(PLATFORMSUB)-$(BUILD_NUMBER)-full$(STATE).zip $(topdir)CHDK/syscurves.CVF > $(DEVNULL) -
branches/reyalp-flt/core/modules/module_inspector.c
r1483 r1495 9 9 10 10 extern int basic_module_init(); 11 void * _getmeminfo=0;11 void (*_getmeminfo)(void*) = 0; 12 12 13 13 /***************** BEGIN OF AUXILARY PART ********************* … … 175 175 if (_getmeminfo) { 176 176 177 extern void GetMemInfo(cam_meminfo*);178 179 177 cam_meminfo meminfo; 180 178 memset(&meminfo,sizeof(meminfo),0); 181 GetMemInfo(&meminfo);179 _getmeminfo(&meminfo); 182 180 183 181 char txt[50];
Note: See TracChangeset
for help on using the changeset viewer.