File: hyperlinks.h

package info (click to toggle)
fuse-emulator 1.5.7%2Bdfsg1-4
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 9,024 kB
  • sloc: ansic: 87,196; sh: 11,456; perl: 3,916; makefile: 991; yacc: 245; lex: 139
file content (28 lines) | stat: -rw-r--r-- 958 bytes parent folder | download | duplicates (4)
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
/* hyperlinks.h: hyperlink control
   Copyright 2002 Neal Stublen

   Taken (almost) verbatim from public domain code found on CodeGuru:
   http://www.codeguru.com/cpp/controls/staticctrl/article.php/c5803
   Copyright 2002 Neal Stublen
   All rights reserved.

   The CodeGuru license is a bit vague, but they state:
   "While we are talking about copyrights, you retain copyright of your 
   article and code, but by submitting it to CodeGuru you give permission
   to use it in a fair manner and also permit all developers to freely use 
   the code in their own applications -even if they are commercial."
   License: CodeGuru-specific, 2009

   Author contact information:

   E-mail: philip-fuse@shadowmagic.org.uk

*/

#ifndef FUSE_HYPERLINKS_H
#define FUSE_HYPERLINKS_H

BOOL ConvertStaticToHyperlink( HWND hwndCtl );
BOOL ConvertCtlStaticToHyperlink( HWND hwndParent, UINT uiCtlId );

#endif                          /* #ifndef FUSE_HYPERLINKS_H */