ViewVC Help
View File
|
Revision Log
|
View Changeset
|
Root Listing
root
/
Oni2
/
Daodan
/
src
/
oni_stdio.h
Revision:
272
Committed:
Tue Mar 17 09:06:00 2009 UTC
(16 years, 6 months ago) by
rossy
Content type:
text/x-chdr
File size:
229 byte(s)
Log Message:
directory structure
File Contents
#
Content
1
#pragma once
2
#ifndef ONI_STDIO_H
3
#define ONI_STDIO_H
4
5
#include
<stdio.h>
6
7
FILE
*
__cdecl
oni_fopen
(
const
char
*
,
const
char
*
);
8
int
__cdecl
oni_fprintf
(
FILE
*
,
const
char
*
,
...);
9
int
__cdecl
oni_fflush
(
FILE
*
);
10
11
#endif