summaryrefslogtreecommitdiff
path: root/FL
diff options
context:
space:
mode:
authorManolo Gouy <Manolo>2018-02-12 07:18:36 +0000
committerManolo Gouy <Manolo>2018-02-12 07:18:36 +0000
commitf5bd951f5c9945f236dfae7412e0dcecefb40687 (patch)
tree9bcbeec305bd39e74edbd54c6c0217c2e679f9bf /FL
parent36bcbe8eb0e6cc1eed4262611c8df4ab458edf18 (diff)
Slight rewording of the documentation of types fl_intptr_t and fl_uintptr_t.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.4@12665 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL')
-rw-r--r--FL/platform_types.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/FL/platform_types.h b/FL/platform_types.h
index 036068b08..226ce5958 100644
--- a/FL/platform_types.h
+++ b/FL/platform_types.h
@@ -23,14 +23,14 @@
#ifdef FL_DOXYGEN
-/** An integral type large enough to store a pointer.
+/** An integral type large enough to store a pointer or a long value.
A pointer value can be safely cast to fl_intptr_t, and later cast back
- to its initial pointer type without changing the pointer's value.
+ to its initial pointer type without change to the pointer value.
A variable of type fl_intptr_t can also store a long int value. */
typedef opaque fl_intptr_t;
-/** An unsigned integral type large enough to store a pointer.
+/** An unsigned integral type large enough to store a pointer or an unsigned long value.
A pointer value can be safely cast to fl_uintptr_t, and later cast back
- to its initial pointer type without changing the pointer's value.
+ to its initial pointer type without change to the pointer value.
A variable of type fl_uintptr_t can also store an unsigned long int value. */
typedef opaque fl_uintptr_t;