mirror of
https://github.com/SMGCommunity/Petari.git
synced 2024-12-02 10:36:39 +00:00
OSRegisterVersion
This commit is contained in:
parent
0992b0def1
commit
f8aff363e9
16
include/OS/OS.h
Normal file
16
include/OS/OS.h
Normal file
@ -0,0 +1,16 @@
|
||||
#ifndef OS_H
|
||||
#define OS_H
|
||||
|
||||
#include "types.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
void OSRegisterVersion(const char *);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif // OS_H
|
7
source/OS/OS.c
Normal file
7
source/OS/OS.c
Normal file
@ -0,0 +1,7 @@
|
||||
#include "OS/OS.h"
|
||||
#include "OS/OSError.h"
|
||||
|
||||
void OSRegisterVersion(const char *versionStr)
|
||||
{
|
||||
OSReport("%s\n", versionStr);
|
||||
}
|
Loading…
Reference in New Issue
Block a user