root/platform/ixus255_elph330hs/sub/boot_hdr.c

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. CreateTask_spytask

   1 #include "lolevel.h"
   2 #include "platform.h"
   3 #include "core.h"
   4 #include "dryos31.h"
   5 
   6 #define offsetof(TYPE, MEMBER) ((int) &((TYPE *)0)->MEMBER)
   7 
   8 const char * const new_sa = &_end;
   9 
  10 extern void task_CaptSeq();
  11 extern void task_InitFileModules();
  12 extern void task_MovieRecord();
  13 extern void task_ExpDrv();
  14 extern void task_FileWrite();
  15 
  16 /*----------------------------------------------------------------------
  17     CreateTask_spytask
  18 -----------------------------------------------------------------------*/
  19 void CreateTask_spytask()
  20 {
  21     _CreateTask("SpyTask", 0x19, 0x2000, core_spytask, 0);
  22 }
  23 
  24 /*----------------------------------------------------------------------
  25     boot()
  26 
  27     Main entry point for the CHDK code
  28 -----------------------------------------------------------------------*/

/* [<][>][^][v][top][bottom][index][help] */