36 lines
337 B
C++
36 lines
337 B
C++
![]() |
// Title : Buses.cpp
|
||
|
// Author : Obbe Vermeij
|
||
|
// Started : 25/01/2005
|
||
|
//
|
||
|
//
|
||
|
//
|
||
|
//
|
||
|
// C headers
|
||
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <string.h>
|
||
|
|
||
|
#include "buses.h"
|
||
|
//
|
||
|
// InitLevel
|
||
|
//
|
||
|
|
||
|
void CBuses::Init(unsigned )
|
||
|
{
|
||
|
}
|
||
|
|
||
|
//
|
||
|
// ShutdownLevel
|
||
|
//
|
||
|
void CBuses::Shutdown(unsigned )
|
||
|
{
|
||
|
}
|
||
|
|
||
|
//
|
||
|
// Process
|
||
|
//
|
||
|
void CBuses::Process()
|
||
|
{
|
||
|
}
|
||
|
|