Beispiel #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);
 }
Beispiel #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);
 }
Beispiel #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);
 }
Beispiel #4
0
 public static extern IntPtr hlPackageGetItemAttributeName(HLPackageAttribute eAttribute);
Beispiel #5
0
 public static extern bool hlPackageGetItemAttribute(IntPtr pItem, HLPackageAttribute eAttribute, out HLAttribute pAttribute);
Beispiel #6
0
 public static extern bool hlPackageGetAttribute(HLPackageAttribute eAttribute, out HLAttribute pAttribute);
Beispiel #7
0
 public static extern string hlPackageGetItemAttributeName(HLPackageAttribute eAttribute);
Beispiel #8
0
 public static string hlPackageGetItemAttributeName(HLPackageAttribute eAttribute)
 {
     if (IsWow64()) return x64.hlPackageGetItemAttributeName(eAttribute); else return x86.hlPackageGetItemAttributeName(eAttribute);
 }