6 Jul
2023
6 Jul
'23
8:19 a.m.
Rémi Bernon (@rbernon) commented about dlls/windows.networking.hostname/hostname.c:
+ * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA + */ + +#include "private.h" +#include "wine/debug.h" + +WINE_DEFAULT_DEBUG_CHANNEL(hostname); + +struct hostname +{ + IActivationFactory IActivationFactory_iface; + LONG ref; +}; This would be the `statics` part of the class, so it should be named `<class>_statics` and will only include the static interfaces.
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/3249#note_38108