mirror of
https://github.com/dlang/phobos.git
synced 2025-05-05 09:30:49 +03:00

This includes deprecating std.c.*, which apparently was marked as scheduled for deprecation in 2.068 but never actually deprecated (though it looks like it was previously removed from the documentation build, since it doesn't show up on dlang.org).
13 lines
326 B
D
13 lines
326 B
D
// Written in the D programming language.
|
|
|
|
// @@@DEPRECATED_2017-06@@@
|
|
|
|
/++
|
|
$(RED Deprecated. Use $(D core.sys.windows.com instead. This module
|
|
will be removed in June 2017.)
|
|
+/
|
|
deprecated("Import core.sys.windows.com instead")
|
|
module std.windows.iunknown;
|
|
|
|
// Replaced by:
|
|
public import core.sys.windows.com;
|