Copyright (c) Hyperion Entertainment and contributors.
Difference between revisions of "AmiWest Lesson 2"
Jump to navigation
Jump to search
Steven Solie (talk | contribs) |
Steven Solie (talk | contribs) |
||
Line 3: | Line 3: | ||
== Basic Types == |
== Basic Types == |
||
+ | It is very important to under at least the basic types when programming. The following table summarizes the basic types used in AmigaOS as compared to standard C and C++ types: |
||
− | List the types and their purpose here.. |
||
+ | |||
+ | {| class="wikitable" |
||
+ | |+AmigaOS Types |
||
+ | ! Current Type !! Deprecated Type !! C !! C++ |
||
+ | |- |
||
+ | | uint64 || n/a || uint64_t || uint64_t |
||
+ | |- |
||
+ | | int64 || n/a || int64_t || int64_t |
||
+ | |- |
||
+ | | uint32 || ULONG || uint32_t || uint32_t |
||
+ | |- |
||
+ | | int32 || LONG || int32_t || int32_t |
||
+ | |- |
||
+ | | uint16 || UWORD || uint16_t || uint16_t |
||
+ | |- |
||
+ | | int16 || WORD || int16_t || int16_t |
||
+ | |} |
Revision as of 02:59, 3 October 2012
AmiWest Lesson 1: Fundamentals
Basic Types
It is very important to under at least the basic types when programming. The following table summarizes the basic types used in AmigaOS as compared to standard C and C++ types:
Current Type | Deprecated Type | C | C++ |
---|---|---|---|
uint64 | n/a | uint64_t | uint64_t |
int64 | n/a | int64_t | int64_t |
uint32 | ULONG | uint32_t | uint32_t |
int32 | LONG | int32_t | int32_t |
uint16 | UWORD | uint16_t | uint16_t |
int16 | WORD | int16_t | int16_t |