28 lines
518 B
C
28 lines
518 B
C
|
//+-------------------------------------------------------------------------
|
||
|
//
|
||
|
// Microsoft Windows
|
||
|
//
|
||
|
// Copyright (C) Microsoft Corporation, 1996-1999
|
||
|
//
|
||
|
// File: sipbase.h
|
||
|
//
|
||
|
// Contents: Generic SIP Provider Main Include File
|
||
|
//
|
||
|
// History: 14-Feb-1997 pberkman created
|
||
|
//
|
||
|
//--------------------------------------------------------------------------
|
||
|
|
||
|
#ifndef SIPBASE_H
|
||
|
#define SIPBASE_H
|
||
|
|
||
|
#if _MSC_VER > 1000
|
||
|
#pragma once
|
||
|
#endif
|
||
|
|
||
|
// all moved to mssip.h
|
||
|
#include <mssip.h>
|
||
|
|
||
|
#endif // SIPBASE_H
|
||
|
|
||
|
|