summary refs log tree commit diff stats
path: root/win32/hexchat-xp.props
AgeCommit message (Expand)Author
2012-11-12Prepare solution for Perl 5.16 VC buildBerke Viktor
2012-11-12Move HexChat L10n to share\locale where it should've been in the first placeBerke Viktor
2012-11-04Move build files out of the source tree, make grep usage much easierBerke Viktor
2012-11-04Fix tabulationBerke Viktor
2012-11-03Varname consolidation for the rest of pixmapsBerke Viktor
2012-11-03Relocate hexchat.png and hexchat.ico and some more varname cleanupBerke Viktor
2012-11-03Rainbow user list colors and more senseful variable namesBerke Viktor
2012-11-02added support for op+3 iconsTingPing
2012-10-30Eliminate even more warnings and bump warning level to 3Berke Viktor
2012-10-30Revert "Proof-of-concept compat mode for XChat"Berke Viktor
2012-10-30Proof-of-concept compat mode for XChatBerke Viktor
2012-10-29Make HexTray filename consistent with the restBerke Viktor
2012-10-26Fixes after file movesBerke Viktor
2012-10-25Get rid of the SASL pluginBerke 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-21Rename WinSys on the code levelBerke Viktor
2012-10-21Move warning level to property sheetBerke Viktor
2012-10-13Provide builtin defauls for treeview iconsBerke Viktor
2012-10-03Now really finish the reversionBerke Viktor
2012-10-03Complete the VS2010 reversionBerke Viktor
2012-10-03Unified copy for xp solution tooBerke Viktor
2012-10-02Fix intl lib name for xp solutionBerke Viktor
2012-10-02Fix xp deps pathBerke Viktor
2012-10-02Remove hardcoding as much as possibleBerke Viktor
2012-10-02Move copy part to property sheet part 1Berke Viktor
2012-10-02Add XP (WDK) solution as a fallback optionBerke Viktor
acdddbec287c33dbbd9'>d33a16ae ^
32859347 ^
d33a16ae ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36



                                                                       
                                                 
 

                                                              
 
                                                                                                                        
 




                               
         



                          
 



                                                                         
                                                                             






                                                              
                                                                                                          
 
# HexChat Hacking Guidelines

Just some tips if you're going to help with HexChat code (patches etc):

* Use tabs, not spaces, to indent and align code.

* Use a tab size of 4 (most editors will let you choose this).
  Type :set ts=4 in vim/gvim.

* Try to stick to the same consistant coding style (vertically aligned braces, a space after if, while, functions etc.):

```C
void
routine (void)
{
	if (function (a, b, c))
	{
		x = a + 1;
	}
}
```

* Don't use "//" C++ style comments, some compilers don't like them.

* When opening a file with Unix level functions (open, read/write, close)
  as opposed to the C level functions (fopen, fwrite/fread, fclose), use
  the OFLAGS macro. This makes sure it'll work on Win32 as well as Unix e.g.:

	<pre>fh = open ("file", OFLAGS | O_RDONLY);</pre>

* Use closesocket() for sockets, and close() for normal files.

* Don't read() from sockets, use recv() instead.

* Patches are only accepted as a Github Pull request: https://help.github.com/articles/using-pull-requests