Sign in
chromium
/
external
/
github.com
/
mesonbuild
/
meson
/
refs/heads/upstream/fixboostpython
/
.
/
test cases
/
d
/
3 shared library
/
libstuff.d
blob: 8205490f7ce24b7d5175934e8ad9bf1239c39b57 [
file
] [
edit
]
import
std
.
stdio
;
import
std
.
string
:
format
;
export
int
printLibraryString
(
string
str
)
{
writeln
(
"Library says: %s"
.
format
(
str
));
return
4
;
}
version
(
Windows
)
{
import
core
.
sys
.
windows
.
dll
;
mixin
SimpleDllMain
;
}