repo.or.cz
/
AROS.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
disable debug
[AROS.git]
/
arch
/
all-mingw32
/
bootstrap
/
unicode.h
blob
e0584ef5b2008e90b182ff33abe0a3c3ac69425a
1
#ifdef _UNICODE
2
3
LPTSTR
StrConvert
(
const char
*
src
);
4
#define StrFree(s) free(s);
5
6
#else
7
8
#define StrConvert(s) s
9
#define StrFree(s)
10
11
#endif