コード例 #1
0
ファイル: HLLib.cs プロジェクト: dpvreony/kettle
 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);
 }
コード例 #2
0
ファイル: HLLib.cs プロジェクト: dpvreony/kettle
 public static bool hlPackageGetAttribute(HLPackageAttribute eAttribute, out HLAttribute pAttribute)
 {
     if (IsWow64()) return x64.hlPackageGetAttribute(eAttribute, out pAttribute); else return x86.hlPackageGetAttribute(eAttribute, out pAttribute);
 }
コード例 #3
0
ファイル: HLLib.cs プロジェクト: dpvreony/kettle
 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);
 }
コード例 #4
0
ファイル: HLLib.cs プロジェクト: dpvreony/kettle
 public static extern IntPtr hlPackageGetItemAttributeName(HLPackageAttribute eAttribute);
コード例 #5
0
ファイル: HLLib.cs プロジェクト: dpvreony/kettle
 public static extern bool hlPackageGetItemAttribute(IntPtr pItem, HLPackageAttribute eAttribute, out HLAttribute pAttribute);
コード例 #6
0
ファイル: HLLib.cs プロジェクト: dpvreony/kettle
 public static extern bool hlPackageGetAttribute(HLPackageAttribute eAttribute, out HLAttribute pAttribute);
コード例 #7
0
ファイル: HLLib.cs プロジェクト: jpiolho/sledge
 public static extern string hlPackageGetItemAttributeName(HLPackageAttribute eAttribute);
コード例 #8
0
ファイル: HLLib.cs プロジェクト: Rupan/HLLib
 public static string hlPackageGetItemAttributeName(HLPackageAttribute eAttribute)
 {
     if (IsWow64()) return x64.hlPackageGetItemAttributeName(eAttribute); else return x86.hlPackageGetItemAttributeName(eAttribute);
 }