00001
00002
00003
00004
00005
00006
00007
00008
00010
00011 #define __PALM_APP_INL__
00012
00013 #ifdef __PALM_OS__
00014
00015 #pragma once
00016
00017 __BEGIN_NAMESPACE__
00019
00020
00021 __INLINE__ uint16 PalmApp::GetLaunchCode() const
00022 {
00023 return LaunchCode;
00024 }
00025
00026 __INLINE__ void PalmApp::SetLaunchCode(uint16 _code)
00027 {
00028 LaunchCode = _code;
00029 }
00030
00031 __INLINE__ uint16 PalmApp::GetFlags() const
00032 {
00033 return Flags;
00034 }
00035
00036 __INLINE__ void PalmApp::SetFlags(uint16 _flags)
00037 {
00038 Flags = _flags;
00039 }
00040
00041 __INLINE__ uint32 PalmApp::GetExitCode() const
00042 {
00043 return ExitCode;
00044 }
00045
00046 __INLINE__ void PalmApp::SetExitCode(uint32 _code)
00047 {
00048 ExitCode = _code;
00049 }
00050
00051 __INLINE__ const void* PalmApp::GetCommandPBP() const
00052 {
00053 return CommandPBP;
00054 }
00055
00056 __INLINE__ void PalmApp::SetCommandPBP(const void* _pbp)
00057 {
00058 CommandPBP = _pbp;
00059 }
00060
00061 __INLINE__ const EventType& PalmApp::GetCurrEvent() const
00062 {
00063 return CurrEvent;
00064 }
00065
00066 __INLINE__ int32 PalmApp::GetTimeout() const
00067 {
00068 return Timeout;
00069 }
00070
00071 __INLINE__ void PalmApp::SetTimeout(int32 _timeout)
00072 {
00073 Timeout = _timeout;
00074 }
00076 __END_NAMESPACE__
00077
00078 #endif // __PALM_OS__
00079 #endif // __PALM_APP_INL__