Skip to content

Commit 8f461af

Browse files
committed
implement trkTrack_Impl::GetCallbacks
1 parent 1d3a4aa commit 8f461af

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

source/Libs Tracker/TrackerPC.cpp

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#include "TrackerPC.h"
2+
3+
int trkTrack_Impl::GetCallbacks(int param_1) {
4+
return *(int **)(param_1 + 0x30);
5+
}
6+

source/Libs Tracker/TrackerPC.h

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#ifndef TRACKERPC_H
2+
#define TRACKERPC_H
3+
4+
namespace TrackerPC {
5+
6+
class trkTrack_Impl {
7+
public:
8+
int GetCallbacks(int param_1);
9+
10+
};
11+
12+
} // namespace TrackerPC
13+
14+
#endif // TRACKERPC_H

0 commit comments

Comments
 (0)