Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

64 lines
1.1 KiB

  1. /*****************************************************************/
  2. /** Microsoft Windows 4.00 **/
  3. /** Copyright (C) Microsoft Corp., 1994-1995 **/
  4. /*****************************************************************/
  5. /*
  6. * Internal NetWare access API definitions for use by Windows components
  7. *
  8. * History
  9. *
  10. * vlads 12/15/94 Created
  11. *
  12. *
  13. */
  14. #ifndef _INC_MSNWDEF
  15. #define _INC_MSNWDEF
  16. #ifdef _H2INC
  17. #define WINAPI _stdcall
  18. #define VOID void
  19. #define LPVOID void *
  20. typedef unsigned char BYTE;
  21. typedef BYTE *LPBYTE;
  22. typedef unsigned int UINT;
  23. typedef unsigned int WORD;
  24. typedef unsigned long DWORD;
  25. typedef unsigned long ULONG;
  26. typedef char *LPSTR;
  27. typedef DWORD *LPDWORD;
  28. typedef UINT *LPUINT;
  29. typedef WORD *LPWORD;
  30. #endif
  31. //
  32. // Base definitions
  33. //
  34. #ifndef NWCONN_HANDLE
  35. typedef HANDLE NWCONN_HANDLE; // Connection handle
  36. #endif
  37. typedef NWCONN_HANDLE* PNWCONN_HANDLE;
  38. #ifdef __cplusplus
  39. extern "C" { /* Assume C declarations for C++ */
  40. #endif /* __cplusplus */
  41. #ifdef __cplusplus
  42. }
  43. #endif /* __cplusplus */
  44. #endif /* !_INC_MSNWDEF */