mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-10 01:48:00 +00:00
d9369d4a46
While grepping for FIXME comments I could get rid of easily, I came across a completely unexplained one in puttytel.rc, and after a moment of thought, realised that it was there because PuTTYtel sharing PuTTY's manifest file means the manifest has the wrong application name. Of course I could do something a bit more clever involving having one copy of the manifest file and templating it to multiple applications, but I think it would be more pain than it's worth given that the templating system would have to be compatible with all the makefiles and run on Windows systems where no sensible scripting was available. So I just do it the trivial way.
11 lines
193 B
Plaintext
11 lines
193 B
Plaintext
#include "rcstuff.h"
|
|
|
|
#define APPNAME "PuTTYtel"
|
|
#define APPDESC "Telnet and Rlogin client"
|
|
|
|
#include "win_res.rc2"
|
|
|
|
#ifndef NO_MANIFESTS
|
|
1 RT_MANIFEST "puttytel.mft"
|
|
#endif /* NO_MANIFESTS */
|