projects
/
btb
/
d2x.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
implement -nomusic for linux hmiplay (d1x r1.8)
[btb/d2x.git]
/
arch
/
win32
/
mono.c
1
#include <stdio.h>
2
#include <stdarg.h>
3
void mopen() {}
4
void mclose() {}
5
void _mprintf(short n, char * format, ...) {
6
#ifndef NMONO
7
va_list args;
8
va_start(args, format );
9
vprintf(format, args);
10
va_end(args);
11
#endif
12
}
13