irwir

Results 148 comments of irwir

Got this same issue today in alpha with clist_modern and icon in the system tray. Hide/show in context menu does nothing too. Nothing had crashed recently. There werel no contacts...

`Select old drivers` got 6 ntprint.inf files with different versions. None could be deleted; even with forced delete. But Windows utility could remove these drivers with a command like this...

Conveniently, next version was released today. There are only three kinds of drivers: display, printers and system devices. Old display and printer drivers were detected, system devices in question were...

There are two `playback locations` - one in score, the other is the slider position. Slider position is updated only while playing and so it remained unchanged after `Rewind`. However,...

Resolved in recent commit (refactoring) which enabled optional certificate validation for TLS 1.3.

According to docs, MFC supports only DPI System-awareness level.

Speaking about inlining. 1. In some cases VC++ compiler optimizes by inlining; though it could be known only afterwards. 2. There is a possibility to use macro and add dll/inline...

My previous message was too short and thus unclear. Definition in `.cpp` might be inlined by compiler without `inline` keyword, but may be not. Methods defined in header files are...

> The Idea is to use AFX_EXT_CLASS to export the whole classs In non-dll builds `AFX_EXT_CLASS` is defined as an empty string. You can create a macro that would add...

C++ Standards tells that a function defined inside a class definition is inline. It is possible to declare an inline function, and define it elsewhere. Also there could be more...