Exemplo n.º 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);
 }
Exemplo n.º 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);
 }
Exemplo n.º 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);
 }
Exemplo n.º 4
0
 public static extern IntPtr hlPackageGetItemAttributeName(HLPackageAttribute eAttribute);
Exemplo n.º 5
0
 public static extern bool hlPackageGetItemAttribute(IntPtr pItem, HLPackageAttribute eAttribute, out HLAttribute pAttribute);
Exemplo n.º 6
0
 public static extern bool hlPackageGetAttribute(HLPackageAttribute eAttribute, out HLAttribute pAttribute);
Exemplo n.º 7
0
 public static extern string hlPackageGetItemAttributeName(HLPackageAttribute eAttribute);
Exemplo n.º 8
0
Arquivo: HLLib.cs Projeto: Rupan/HLLib
 public static string hlPackageGetItemAttributeName(HLPackageAttribute eAttribute)
 {
     if (IsWow64()) return x64.hlPackageGetItemAttributeName(eAttribute); else return x86.hlPackageGetItemAttributeName(eAttribute);
 }