Example #1
0
 public static void notepad_check(notepad_check_class npc)
 {
     Process [] notepad_list = Process.GetProcessesByName("notepad");
     if (notepad_list.Length > 0)
     {
         npc.notepad_running = 1;
     }
 }
 public kill_notepad_class()
 {
     npc = new notepad_check_class();
 }