Forum: C Aug 1st, 2004 |
| Replies: 2 Views: 4,789 check this link :D
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemDrawingPrintingPrinterSettingsPropertiesTopic.asp |
Forum: C Aug 1st, 2004 |
| Replies: 7 Views: 5,160 With more familiarity to Unix based systems I realised an important fundamental of fork()ing. The way Unix creates a new process. And a simple "man fork" helped alot. After getting a little familiar... |
Forum: C Jul 14th, 2004 |
| Replies: 5 Views: 5,509 _strrev, _wcsrev, _mbsrev
Reverse characters of a string.
char *_strrev( char *string );
wchar_t *_wcsrev( wchar_t *string );
unsigned char *_mbsrev( unsigned char *string );
Routine... |