Beispiel #1
0
 public static extern bool hlGetVoidValidate(HLOption eOption, out IntPtr pValue);
Beispiel #2
0
 public static void hlSetString(HLOption eOption, string lpValue)
 {
     if (IsWow64()) x64.hlSetString(eOption, lpValue); else x86.hlSetString(eOption, lpValue);
 }
Beispiel #3
0
 public static void hlSetUnsignedLong(HLOption eOption, ulong uiValue)
 {
     if (IsWow64()) x64.hlSetUnsignedLong(eOption, uiValue); else x86.hlSetUnsignedLong(eOption, uiValue);
 }
Beispiel #4
0
 public static void hlSetBoolean(HLOption eOption, bool bValue)
 {
     if (IsWow64()) x64.hlSetBoolean(eOption, bValue); else x86.hlSetBoolean(eOption, bValue);
 }
Beispiel #5
0
 public static void hlSetInteger(HLOption eOption, int iValue)
 {
     if (IsWow64()) x64.hlSetInteger(eOption, iValue); else x86.hlSetInteger(eOption, iValue);
 }
Beispiel #6
0
 public static ulong hlGetUnsignedLong(HLOption eOption)
 {
     if (IsWow64()) return x64.hlGetUnsignedLong(eOption); else return x86.hlGetUnsignedLong(eOption);
 }
Beispiel #7
0
 public static IntPtr hlGetVoid(HLOption eOption)
 {
     if (IsWow64()) return x64.hlGetVoid(eOption); else return x86.hlGetVoid(eOption);
 }
Beispiel #8
0
 public static extern void hlSetUnsignedInteger(HLOption eOption, uint uiValue);
Beispiel #9
0
 public static extern void hlSetUnsignedLong(HLOption eOption, ulong uiValue);
Beispiel #10
0
 public static extern void hlSetLong(HLOption eOption, long iValue);
Beispiel #11
0
 public static extern void hlSetString(HLOption eOption, [MarshalAs(UnmanagedType.LPStr)]string lpValue);
Beispiel #12
0
 public static extern void hlSetInteger(HLOption eOption, int iValue);
Beispiel #13
0
 public static extern void hlSetFloat(HLOption eOption, float pValue);
Beispiel #14
0
 public static extern void hlSetBoolean(HLOption eOption, [MarshalAs(UnmanagedType.U1)]bool bValue);
Beispiel #15
0
 public static bool hlGetStringValidate(HLOption eOption, out string pValue)
 {
     if (IsWow64()) return x64.hlGetStringValidate(eOption, out pValue); else return x86.hlGetStringValidate(eOption, out pValue);
 }
Beispiel #16
0
 public static extern void hlSetVoid(HLOption eOption, IntPtr lpValue);
Beispiel #17
0
 public static uint hlGetUnsignedInteger(HLOption eOption)
 {
     if (IsWow64()) return x64.hlGetUnsignedInteger(eOption); else return x86.hlGetUnsignedInteger(eOption);
 }
Beispiel #18
0
 //
 // Get/Set
 //
 public static bool hlGetBoolean(HLOption eOption)
 {
     if (IsWow64()) return x64.hlGetBoolean(eOption); else return x86.hlGetBoolean(eOption);
 }
Beispiel #19
0
 public static bool hlGetUnsignedLongValidate(HLOption eOption, out ulong pValue)
 {
     if (IsWow64()) return x64.hlGetUnsignedLongValidate(eOption, out pValue); else return x86.hlGetUnsignedLongValidate(eOption, out pValue);
 }
Beispiel #20
0
 public static bool hlGetBooleanValidate(HLOption eOption, out bool pValue)
 {
     if (IsWow64()) return x64.hlGetBooleanValidate(eOption, out pValue); else return x86.hlGetBooleanValidate(eOption, out pValue);
 }
Beispiel #21
0
 public static bool hlGetVoidValidate(HLOption eOption, out IntPtr pValue)
 {
     if (IsWow64()) return x64.hlGetVoidValidate(eOption, out pValue); else return x86.hlGetVoidValidate(eOption, out pValue);
 }
Beispiel #22
0
 public static float hlGetFloat(HLOption eOption)
 {
     if (IsWow64()) return x64.hlGetFloat(eOption); else return x86.hlGetFloat(eOption);
 }
Beispiel #23
0
 public static void hlSetFloat(HLOption eOption, float pValue)
 {
     if (IsWow64()) x64.hlSetFloat(eOption, pValue); else x86.hlSetFloat(eOption, pValue);
 }
Beispiel #24
0
 public static bool hlGetFloatValidate(HLOption eOption, out float pValue)
 {
     if (IsWow64()) return x64.hlGetFloatValidate(eOption, out pValue); else return x86.hlGetFloatValidate(eOption, out pValue);
 }
Beispiel #25
0
 public static void hlSetLong(HLOption eOption, long iValue)
 {
     if (IsWow64()) x64.hlSetLong(eOption, iValue); else x86.hlSetLong(eOption, iValue);
 }
Beispiel #26
0
 public static bool hlGetIntegerValidate(HLOption eOption, out int pValue)
 {
     if (IsWow64()) return x64.hlGetIntegerValidate(eOption, out pValue); else return x86.hlGetIntegerValidate(eOption, out pValue);
 }
Beispiel #27
0
 public static void hlSetUnsignedInteger(HLOption eOption, uint uiValue)
 {
     if (IsWow64()) x64.hlSetUnsignedInteger(eOption, uiValue); else x86.hlSetUnsignedInteger(eOption, uiValue);
 }
Beispiel #28
0
 public static string hlGetString(HLOption eOption)
 {
     IntPtr lpString;
     if (IsWow64()) lpString = x64.hlGetString(eOption); else lpString = x86.hlGetString(eOption);
     return lpString == IntPtr.Zero ? string.Empty : Marshal.PtrToStringAnsi(lpString);
 }
Beispiel #29
0
 public static void hlSetVoid(HLOption eOption, IntPtr lpValue)
 {
     if (IsWow64()) x64.hlSetVoid(eOption, lpValue); else x86.hlSetVoid(eOption, lpValue);
 }
Beispiel #30
0
 public static extern IntPtr hlGetVoid(HLOption eOption);