Mercurial > hg > easyhg-kdiff3
view kdiff3/src/version.c @ 38:ec4d236b9d1b
Suppression of quotes (WinCVS integration)
Suppression of the entry in the context menu of the directories (explorer integration)
author | friseb123 |
---|---|
date | Mon, 13 Oct 2003 08:42:16 +0000 |
parents | b6a7e96a4f2c |
children |
line wrap: on
line source
#include <stdio.h> #include "version.h" main(int argv,char** argc) { if (argv<=1) { printf("%s\n",VERSION); } else if (strcmp(argc[1],"dos")==0) { printf("set MUI_VERSION=\"%s\"\n",VERSION); } else if (strcmp(argc[1],"nsis")==0) { printf("!define MUI_VERSION \"%s\"\n",VERSION); } else if (strcmp(argc[1],"unix")==0) { printf("#define MUI_VERSION=\"%s\"\n",VERSION); } }