33 lines
383 B
C
33 lines
383 B
C
|
/*++
|
||
|
|
||
|
Copyright (c) 1991-2000 Microsoft Corporation
|
||
|
|
||
|
Module Name:
|
||
|
|
||
|
local.h
|
||
|
|
||
|
Abstract:
|
||
|
|
||
|
Common header file for all sockutil modules.
|
||
|
|
||
|
Author:
|
||
|
|
||
|
David Treadwell (davidtr) 5-06-92
|
||
|
|
||
|
Revision History:
|
||
|
|
||
|
--*/
|
||
|
|
||
|
#ifndef _LOCAL_
|
||
|
#define _LOCAL_
|
||
|
|
||
|
#include <nt.h>
|
||
|
#include <ntrtl.h>
|
||
|
#include <nturtl.h>
|
||
|
#include <windef.h>
|
||
|
#include <winbase.h>
|
||
|
|
||
|
#include <stdio.h>
|
||
|
|
||
|
#endif // _LOCAL_
|