Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ GetHINSTANCE() [1/2]

static IntPtr System.Runtime.InteropServices.Marshal.GetHINSTANCE ( Module m)
inlinestatic

Definition at line 182 of file Marshal.cs.

183 {
184 if ((object)m == null)
185 {
186 throw new ArgumentNullException("m");
187 }
188 RuntimeModule module = m as RuntimeModule;
189 if ((object)module != null)
190 {
191 return GetHINSTANCE(new QCallModule(ref module));
192 }
193 return (IntPtr)(-1);
194 }
static IntPtr GetHINSTANCE(Module m)
Definition Marshal.cs:182

References System.Runtime.InteropServices.Marshal.GetHINSTANCE().

Referenced by System.Runtime.InteropServices.Marshal.GetHINSTANCE().