49 lines
1.5 KiB
C
49 lines
1.5 KiB
C
/*******************************************************************************
|
|
* *
|
|
* Copyright 2012 Rheinmetall Canada Inc. *
|
|
* *
|
|
* No part of this document may be reproduced, stored in *
|
|
* a retrieval system, or transmitted, in any form or by any means, *
|
|
* electronic, mechanical, photocopying, recording, or otherwise, *
|
|
* without the prior written permission of Rheinmetall Canada Inc. *
|
|
* *
|
|
*******************************************************************************/
|
|
/*
|
|
Description:
|
|
This is a template file for standard C header file.
|
|
|
|
*/
|
|
|
|
/* ************************************************************************** */
|
|
/* Revision:
|
|
### 20120516 JFM
|
|
Original version.
|
|
|
|
### YYYYMMDD Initial, Bug Identification
|
|
Change description.
|
|
*/
|
|
|
|
#ifndef SCHEDULER_H
|
|
#define SCHEDULER_H
|
|
|
|
/* ************************************************************************** */
|
|
/* Includes */
|
|
|
|
|
|
/* ************************************************************************** */
|
|
/* Defines */
|
|
|
|
|
|
/* ************************************************************************** */
|
|
/* Type definitions */
|
|
|
|
|
|
/* ************************************************************************** */
|
|
/* Prototypes */
|
|
void InitScheduler(void);
|
|
|
|
|
|
#endif
|
|
//EOF
|
|
|