?login_element?

Subversion Repositories NedoOS

Rev

Rev 389 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1. #ifndef _GLOBAL_H_
  2. #define _GLOBAL_H_
  3.  
  4. struct global
  5. {
  6.         int prebuf;
  7.         int syncchk;
  8.         int framechk;
  9. };
  10.  
  11. extern struct global g;
  12.  
  13.  
  14. void init_global(void);
  15.  
  16. #endif // _GLOBAL_H_
  17.