awips2/nativeLib/rary.wfoapi.common/include/tmbUtil.H
root 9f19e3f712 Initial revision of AWIPS2 11.9.0-7p5
Former-commit-id: 64fa9254b946eae7e61bbc3f513b7c3696c4f54f
2012-01-06 08:55:05 -06:00

20 lines
624 B
C

// +++ Name: tmbUtil.H
//Purpose: This is a header file for tmbUtil.C. A utility library
// that check if user is logon or a process is running or not.
// ---*************************************************************************
#ifndef _TMBUTIL_H_
#define _TMBUTIL_H_
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int check_local_login(char * user);
int check_remote_login(char *hostname);
int call_consoleUser(char *command, char *searched_user);
int another_atoi(char *buffer);
int findprocess(char* processName);
int killprocess(char* processName);
int check_desktops_or_workspace();
#endif