33 lines
737 B
C
33 lines
737 B
C
|
/******************************************************************************
|
||
|
|
||
|
Copyright(c) Microsoft Corporation
|
||
|
|
||
|
Module Name:
|
||
|
|
||
|
run.h
|
||
|
|
||
|
Abstract:
|
||
|
|
||
|
This module contains the macros, user defined structures & function
|
||
|
definitions needed by run.cpp
|
||
|
|
||
|
Author:
|
||
|
|
||
|
Venu Gopal Choudary 12-Mar-2001
|
||
|
|
||
|
Revision History:
|
||
|
|
||
|
Venu Gopal Choudary 12-Mar-2001 : Created it
|
||
|
|
||
|
|
||
|
******************************************************************************/
|
||
|
|
||
|
#ifndef __RUN_H
|
||
|
#define __RUN_H
|
||
|
|
||
|
#pragma once
|
||
|
#define OI_RUNSERVER 1 // Index of -s option in cmdOptions structure.
|
||
|
#define OI_RUNUSERNAME 4 // Index of -u option in cmdOptions structure.
|
||
|
#define OI_RUNPASSWORD 5 // Index of -p option in cmdOptions structure.
|
||
|
|
||
|
#endif
|