ULONG type replaced

This commit is contained in:
alexeevdv
2015-02-15 18:28:27 +03:00
parent eb96e5ecfe
commit 087ef7674b
22 changed files with 133 additions and 134 deletions
+9 -9
View File
@@ -24,12 +24,12 @@ public:
CProcDescriptor& operator = (const CProcDescriptor& Item);
public:
ULONG m_ulNameOffset; // Index into namespace for procedure name
ULONG m_ulType; // Type of function (P_TIMED, P_CONDITIONAL, none)
ULONG m_ulTime; // Time this proc should go off, if timed
ULONG m_ulExpressionOffset; // Pointer to conditional code, if conditional
ULONG m_ulBodyOffset; // Pointer to procedure
ULONG m_ulNumArgs; // Number of args to procedure
uint32_t m_ulNameOffset; // Index into namespace for procedure name
uint32_t m_ulType; // Type of function (P_TIMED, P_CONDITIONAL, none)
uint32_t m_ulTime; // Time this proc should go off, if timed
uint32_t m_ulExpressionOffset; // Pointer to conditional code, if conditional
uint32_t m_ulBodyOffset; // Pointer to procedure
uint32_t m_ulNumArgs; // Number of args to procedure
};
class CProcTable
@@ -42,8 +42,8 @@ public:
virtual void Serialize(CArchive& ar);
INT_PTR GetSize();
ULONG GetSizeOfProc(INT_PTR nIndex);
ULONG GetOffsetOfProcSection();
uint32_t GetSizeOfProc(INT_PTR nIndex);
uint32_t GetOffsetOfProcSection();
void Dump(CArchive& ar);
@@ -56,7 +56,7 @@ private:
CProcTableArray m_Table;
CDWordArray m_ProcSize;
ULONG m_ulOffsetOfProcSection;
uint32_t m_ulOffsetOfProcSection;
};
#endif //PROC_TABLE_H