summaryrefslogtreecommitdiffstats
path: root/AccountValue/IniFile.cs
diff options
context:
space:
mode:
authorJavier Castillo2011-06-22 18:14:50 +0200
committerJavier Castillo2011-06-22 18:14:50 +0200
commitd7fe4919c23e817d387d60cc5b5a6e29f1860a3e (patch)
tree07ac427e2d6d4f053535388d96088151e91ec278 /AccountValue/IniFile.cs
parentNeue Setup-Dateien hinzugefügt. (diff)
downloadlogintool-d7fe4919c23e817d387d60cc5b5a6e29f1860a3e.tar.gz
logintool-d7fe4919c23e817d387d60cc5b5a6e29f1860a3e.tar.xz
logintool-d7fe4919c23e817d387d60cc5b5a6e29f1860a3e.zip
LoginToll in 2 Versionen aufgeteilt. Version für Pcs und RZ-Pool-Umgebungen.
Diffstat (limited to 'AccountValue/IniFile.cs')
-rw-r--r--AccountValue/IniFile.cs36
1 files changed, 0 insertions, 36 deletions
diff --git a/AccountValue/IniFile.cs b/AccountValue/IniFile.cs
deleted file mode 100644
index 970b6d8..0000000
--- a/AccountValue/IniFile.cs
+++ /dev/null
@@ -1,36 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Text;
-using System.Runtime.InteropServices;
-
-
-namespace AccountValue
-{
- public class IniFile
- {
- public string path;
-
- [DllImport("kernel32")]
- private static extern long WritePrivateProfileString(string section, string key, string val, string filePath);
-
- [DllImport("kernel32")]
- private static extern int GetPrivateProfileString(string section, string key, string def, StringBuilder retVal, int size, string filePath);
-
- public IniFile(string INIPath)
- {
- path = INIPath;
- }
-
- public void IniWriteValue(string Section, string key, string Value)
- {
- WritePrivateProfileString(Section, key, Value, this.path);
- }
-
- public string IniReadValue(string Section, string key)
- {
- StringBuilder temp = new StringBuilder(255);
- int i = GetPrivateProfileString(Section, key, "", temp, 255, this.path);
- return temp.ToString();
- }
- }
-}