36 lines
749 B
C
36 lines
749 B
C
|
|
||
|
/******************************************************************************
|
||
|
|
||
|
Copyright(c) Microsoft Corporation
|
||
|
|
||
|
Module Name:
|
||
|
|
||
|
CommonHeaderFiles.h
|
||
|
|
||
|
Abstract:
|
||
|
|
||
|
This module includes the common files needed for all the source files
|
||
|
in this project.
|
||
|
|
||
|
Author:
|
||
|
|
||
|
Venu Gopal S 25-Jun-2001
|
||
|
|
||
|
Revision History:
|
||
|
|
||
|
|
||
|
******************************************************************************/
|
||
|
|
||
|
#ifndef __COMHEADERFILES_H
|
||
|
#define __COMHEADERFILES_H
|
||
|
|
||
|
//common include files needed for all other cpp files in this project
|
||
|
|
||
|
#include "who.h"
|
||
|
#include "wsuser.h"
|
||
|
#include "wspriv.h"
|
||
|
#include "wssid.h"
|
||
|
#include "wstoken.h"
|
||
|
#include "resource.h"
|
||
|
|
||
|
#endif //__COMHEADERFILES_H
|