Rev 1 | Rev 5 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 1 | Rev 4 | ||
|---|---|---|---|
| Line 1... | Line 1... | ||
| 1 | // hyperlinks.c |
1 | // hyperlinks.c |
| 2 | 2 | ||
| 3 | #include <windows.h> |
3 | #include <windows.h> |
| 4 | 4 | ||
| 5 | 5 | ||
| - | 6 | #ifdef UNICODE |
|
| - | 7 | #define LONGSTRING_PREFIX L |
|
| - | 8 | #else // !UNICODE |
|
| - | 9 | #define LONGSTRING_PREFIX |
|
| - | 10 | #endif // UNICODE |
|
| - | 11 | ||
| - | 12 | ||
| 6 | #define PROP_HYPERLINK_STRUCT |
13 | #define PROP_HYPERLINK_STRUCT LONGSTRING_PREFIX"_HyperlinkStruct" |
| 7 | #define PROP_HYPERLINKPARENT_STRUCT |
14 | #define PROP_HYPERLINKPARENT_STRUCT LONGSTRING_PREFIX"_HyperlinkParentStruct" |
| 8 | 15 | ||
| 9 | 16 | ||
| 10 | // standard hand cursor definition |
17 | // standard hand cursor definition |
| 11 | #ifndef IDC_HAND |
18 | #ifndef IDC_HAND |
| 12 | #define IDC_HAND 147 |
19 | #define IDC_HAND 147 |