home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1997 May / Pcwk0597.iso / borland / cb / setup / cbuilder / data.z / WOWNT16.H < prev    next >
C/C++ Source or Header  |  1997-02-28  |  5KB  |  131 lines

  1. /*++ BUILD Version: 0001    // Increment this if a change has global effects
  2.  
  3. Copyright (c) 1995, Microsoft Corporation
  4.  
  5. Module Name:
  6.  
  7.     wownt16.h
  8.  
  9. Abstract:
  10.  
  11.     Procedure declarations for functions in WOW32.DLL callable by
  12.     3rd-party 16-bit thunking code.
  13.  
  14. --*/
  15.  
  16. #ifndef _WOWNT16_
  17. #define _WOWNT16_
  18. #pragma option -b
  19.  
  20. #ifdef __cplusplus
  21. extern "C" {
  22. #endif /* __cplusplus */
  23.  
  24. //
  25. // 16:16 -> 0:32 Pointer translation.
  26. //
  27. // GetVDMPointer32W will convert the passed in 16-bit address
  28. // to the equivalent 32-bit flat pointer. The upper 16 bits
  29. // of the address are treated according to the value passed in
  30. // fMode: if fMode = 1, then the hiword of vp is used as a
  31. // protected mode selector. Otherwise it is used as a real mode
  32. // segment value.
  33. // The lower 16 bits are treated as the offset.
  34. //
  35. // The return value is 0 if the selector is invalid.
  36. //
  37. // NOTE:  Limit checking is not performed in the retail build
  38. // of Windows NT.  It is performed in the checked (debug) build
  39. // of WOW32.DLL, which will cause 0 to be returned when the
  40. // limit is exceeded by the supplied offset.
  41. //
  42.  
  43. DWORD FAR PASCAL GetVDMPointer32W(LPVOID vp, UINT fMode);
  44.  
  45.  
  46. //
  47. // Win32 module management.
  48. //
  49. // The following routines accept parameters that correspond directly
  50. // to the respective Win32 API function calls that they invoke. Refer
  51. // to the Win32 reference documentation for more detail.
  52.  
  53. DWORD FAR PASCAL LoadLibraryEx32W(LPCSTR lpszLibFile, DWORD hFile, DWORD dwFlags);
  54. DWORD FAR PASCAL GetProcAddress32W(DWORD hModule, LPCSTR lpszProc);
  55. DWORD FAR PASCAL FreeLibrary32W(DWORD hLibModule);
  56.  
  57. //
  58. // Generic Thunk Routine:
  59. //
  60. //   CallProc32W
  61. //
  62. // Transitions to 32 bits and calls specified routine
  63. //
  64. // This routine can pass a variable number of arguments, up to 32, to the
  65. // target 32-bit routine. These arguments are given to CallProc32W following
  66. // the 3 required parameters.
  67. //
  68. //   DWORD cParams          - Number of optional DWORD parameters (0-32)
  69. //
  70. //   LPVOID fAddressConvert - Bit Field, for 16:16 address Convertion. The
  71. //                            optional parameters can be automatically converted
  72. //                            from a 16:16 address format to flat by specifying
  73. //                            a 1 bit in the corresponding position in this mask.
  74. //                            eg (bit 1 means convert parameter 1 from 16:16
  75. //                              to flat address before calling routine)
  76. //
  77. //   DWORD lpProcAddress   -  32 bit native address to call (use LoadLibraryEx32W
  78. //                            and GetProcAddress32W to get this address).
  79. //
  80. // Returns:
  81. //   What ever the API returned on 32 bit side in AX:DX
  82. //
  83. // Error Returns:
  84. //   AX = 0, more than 32 parameters.
  85. //
  86. //
  87. // The function prototype must be declared by the application source code
  88. // in the following format:
  89. //
  90. // DWORD FAR PASCAL CallProc32W( DWORD p1, ... , DWORD lpProcAddress,
  91. //                                        DWORD fAddressConvert, DWORD cParams);
  92. //
  93. // where the value in cParams must match the actual number of optional
  94. // parameters (p1-pn) given AND the "DWORD p1, ..." must be replaced by
  95. // the correct number of parameters being passed.  For example, passing 3
  96. // parameter would simply require the removal of the ... and it insertion of
  97. // "DWORD p2, DWORD p3" instead.  The fAddressConvert parameter uses bit 1
  98. // for the last parameter (p3 in our example), with bit 2 for the next to last,
  99. // etc.
  100. //
  101. // Generic Thunk Routine:
  102. //
  103. //   CallProcEx32W
  104. //
  105. // Transitions to 32 bits and calls specified routine
  106. //
  107. // Similar to the CallProc32W function, the CallProcEx32W is an equivalent
  108. // function that is C calling convention and allows easier and more flexible
  109. // prototyping.  See the prototype below.  The fAddressConvert parameter uses
  110. // bit 1 for the 1st parameter, bit 2 for the 2nd parameter, etc.
  111. //
  112. // Both CallProc32W and CallProcEx32W accept a flag OR'd with the parameter
  113. // count to indicate the calling convention of the function in 32 bits.
  114. // For example, to call a cdecl function in 32-bits with 1 parameter, it would
  115. // look like this:
  116. //
  117. // dwResult = CallProcEx32W( CPEX_DEST_CDECL | 1, 0, dwfn32, p1 );
  118. //
  119.  
  120. DWORD FAR CallProcEx32W( DWORD, DWORD, DWORD, ... );
  121.  
  122. #define CPEX_DEST_STDCALL   0x00000000L
  123. #define CPEX_DEST_CDECL     0x80000000L
  124.  
  125. #ifdef __cplusplus
  126. }
  127. #endif /* __cplusplus */
  128.  
  129. #pragma option -b.
  130. #endif /* !_WOWNT16_ */
  131.