Example #1
0
 public static string hlPackageGetItemAttributeName(HLPackageAttribute eAttribute)
 {
     IntPtr lpString;
     if (IsWow64()) lpString = x64.hlPackageGetItemAttributeName(eAttribute); else lpString = x86.hlPackageGetItemAttributeName(eAttribute);
     return lpString == IntPtr.Zero ? string.Empty : Marshal.PtrToStringAnsi(lpString);
 }
Example #2
0
 public static bool hlPackageGetAttribute(HLPackageAttribute eAttribute, out HLAttribute pAttribute)
 {
     if (IsWow64()) return x64.hlPackageGetAttribute(eAttribute, out pAttribute); else return x86.hlPackageGetAttribute(eAttribute, out pAttribute);
 }
Example #3
0
 public static bool hlPackageGetItemAttribute(IntPtr pItem, HLPackageAttribute eAttribute, out HLAttribute pAttribute)
 {
     if (IsWow64()) return x64.hlPackageGetItemAttribute(pItem, eAttribute, out pAttribute); else return x86.hlPackageGetItemAttribute(pItem, eAttribute, out pAttribute);
 }
Example #4
0
 public static extern IntPtr hlPackageGetItemAttributeName(HLPackageAttribute eAttribute);
Example #5
0
 public static extern bool hlPackageGetItemAttribute(IntPtr pItem, HLPackageAttribute eAttribute, out HLAttribute pAttribute);
Example #6
0
 public static extern bool hlPackageGetAttribute(HLPackageAttribute eAttribute, out HLAttribute pAttribute);
Example #7
0
 public static extern string hlPackageGetItemAttributeName(HLPackageAttribute eAttribute);
Example #8
0
File: HLLib.cs Project: Rupan/HLLib
 public static string hlPackageGetItemAttributeName(HLPackageAttribute eAttribute)
 {
     if (IsWow64()) return x64.hlPackageGetItemAttributeName(eAttribute); else return x86.hlPackageGetItemAttributeName(eAttribute);
 }