summary refs log tree commit diff stats
path: root/win32/installer/hexchat-x64.skel.iss
AgeCommit message (Collapse)Author
2012-10-29Make HexTray filename consistent with the restBerke Viktor
2012-10-25Get rid of the SASL pluginBerke Viktor
2012-10-22Add Windows version check to installer against overly frustrated Win2000 usersBerke Viktor
2012-10-22Change readme icon and add changelog icon as wellBerke Viktor
2012-10-22Add README for people who still can't use GoogleBerke Viktor
2012-10-21Keep the installer component lists sortedBerke Viktor
2012-10-21Rename WinSys on the code levelBerke Viktor
2012-10-13Accept license agreement by defaultBerke Viktor
2012-10-05Install SASL plugin by defaultBerke Viktor
2012-10-03Nuke the remnants of the nonbmp pluginBerke Viktor
2012-10-03Complete the VS2010 reversionBerke Viktor
2012-09-15Remove "Full" installation option, most people blindly install things they ↵Berke Viktor
don't need nor know how to use
2012-09-15Update solution to Visual Studio 2012 Express and get rid of mpcInfoBerke Viktor
2012-09-01Make sure HexChat won't run in portable mode if the user doesn't select itBerke Viktor
2012-09-01Make gtkrc a component so that users can preserve their theme settings ↵Berke Viktor
between upgrades
2012-07-27Fix Perl interface filename in the installer, tooBerke Viktor
2012-07-16Use highest compression available, it actually speeds up compression and ↵Berke Viktor
slightly reduces executable size, no reason not to use it
2012-07-14Ultra compression slows down compilation but doesn't really reduce the size, ↵Berke Viktor
isn't worth it
2012-07-14installer: use lzma2/ultra compressionxhmikosr
2012-07-13Rename DLL files, rename X-SASL to SASLBerke Viktor
2012-07-13Rename X-Tray to HexTrayBerke Viktor
2012-07-13Update theme extensions in the installer, tooBerke Viktor
2012-07-11Rebranding on the file levelBerke Viktor
ss="cm"> * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA */ #ifndef _PARSE_H_ #define _PARSE_H_ int xs_parse_cpu(char *model, char *vendor, double *freq, char *cache, unsigned int *count); int xs_parse_uptime(int *weeks, int *days, int *hours, int *minutes, int *seconds); int xs_parse_os(char *user, char *host, char *kernel); int xs_parse_sound(char *snd_card); int xs_parse_netdev(const char *device, unsigned long long *bytes_recv, unsigned long long *bytes_sent); int xs_parse_df(const char *mount_point, char *string); int xs_parse_meminfo(unsigned long long *mem_tot, unsigned long long *mem_free, int swap); int xs_parse_video(char *vid_card); int xs_parse_agpbridge(char *agp_bridge); int xs_parse_ether(char *ethernet_card); int xs_parse_distro(char *name); #endif