CommonLibVR
FunctionMessage.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include "RE/B/BSTSmartPointer.h"
4 
5 namespace RE
6 {
7  namespace BSScript
8  {
9  class Stack;
10 
11  namespace Internal
12  {
13  class IFuncCallQuery;
14 
16  {
17  public:
18  enum class Type
19  {
20  kInvalid = 0,
21  kCall = 1,
22  kReturn = 2
23  };
24 
25  // members
26  Type type; // 00
27  std::uint32_t pad04; // 04
30  };
31  static_assert(sizeof(FunctionMessage) == 0x18);
32  }
33  }
34 }
Definition: BSTSmartPointer.h:37
Definition: AbsorbEffect.h:6
Definition: FunctionMessage.h:16
Type
Definition: FunctionMessage.h:19
BSTSmartPointer< Stack > stack
Definition: FunctionMessage.h:28
BSTSmartPointer< IFuncCallQuery > funcQuery
Definition: FunctionMessage.h:29
Type type
Definition: FunctionMessage.h:26
std::uint32_t pad04
Definition: FunctionMessage.h:27