/vfp2c32/vfp2c32/vfp2c32/vfp2c32.cpp

# · C++ · 786 lines · 646 code · 80 blank · 60 comment · 58 complexity · 7a7fc14e6abd857d4c06c172a1649e75 MD5 · raw file

  1. #include <windows.h> /* no comment .. */
  2. #include <stdio.h>
  3. #include "pro_ext.h" /* general FoxPro library header */
  4. /* VFP2C specific includes */
  5. #include "vfp2c32.h" /* VFP2C32 specific types & defines */
  6. #include "vfp2carray.h" /* array functions */
  7. #include "vfp2casync.h" /* asynchronous functions */
  8. #include "vfp2cconv.h" /* misc data conversion functions */
  9. #include "vfp2cenum.h" /* window, process, thread, module enumeration functions */
  10. #include "vfp2cfile.h" /* filesystem related functions */
  11. #include "vfp2cmarshal.h" /* marshaling & memory allocation/read/write routines */
  12. #include "vfp2cnetapi.h" /* NetApi32 wrappers (network user,group,resource enumeration etc.) */
  13. #include "vfp2codbc.h" /* ODBC related functions (datasource enumeration,creation,deletion etc., SQLSetPropEx ..) */
  14. #include "vfp2cprint.h" /* Printer related functions (printjob enumeration etc.) */
  15. #include "vfp2cregistry.h" /* registry functions */
  16. #include "vfp2ctime.h" /* time conversion functions */
  17. #include "vfp2ccom.h" /* COM functions */
  18. #include "vfp2casynccom.h" /* Asynchronous COM calls */
  19. #include "vfp2curlmon.h" /* wrappers around urlmon.dll functions */
  20. #include "vfp2cwininet.h" /* wrappers around wininet.dll functions */
  21. #include "vfp2ccallback.h" /* C Callback function emulation */
  22. #include "vfp2cwinsock.h" /* winsock initialization */
  23. #include "vfp2csntp.h" /* SNTP (RFC 1769) implementation */
  24. #include "vfp2cservices.h" /* win service functions */
  25. #include "vfp2cwindows.h" /* some window functions */
  26. #include "vfp2cras.h" /* RAS (dialup management) wrappers (rasapi32.dll) */
  27. #include "vfp2ciphelper.h" /* IP Helper (iphlpapi.dll) wrappers */
  28. #include "vfp2cfont.h" /* Font functions */
  29. #include "vfp2cutil.h" /* common utility functions */
  30. #include "vfp2ccppapi.h" /* C++ class library over LCK */
  31. #include "vfp2ctls.h" /* VFP2C32 thread local storage */
  32. #include "vfpmacros.h"
  33. /* Global variables: module handle for this DLL */
  34. HMODULE ghModule = 0;
  35. void _fastcall OnLoad()
  36. {
  37. /* get module handle - _GetAPIHandle() doesn't work (unresolved external error from linker) */
  38. if (!ghModule)
  39. ghModule = GetModuleHandle(FLLFILENAME);
  40. VFP2CTls::OnLoad();
  41. /* get OS information */
  42. COs::Init();
  43. }
  44. void _fastcall OnUnload()
  45. {
  46. VFP2CTls& tls = VFP2CTls::Tls();
  47. VFP2C_Destroy_Marshal(tls);
  48. // these are not supported in multithreaded version
  49. #ifndef _THREADSAFE
  50. VFP2C_Destroy_Async(tls);
  51. VFP2C_Destroy_Callback(tls);
  52. VFP2C_Destroy_Urlmon(tls);
  53. #endif
  54. VFP2C_Destroy_Winsock(tls);
  55. VFP2C_Destroy_File(tls);
  56. VFP2CTls::OnUnload();
  57. }
  58. void _fastcall InitVFP2C32(ParamBlk *parm)
  59. {
  60. VFP2CTls& tls = VFP2CTls::Tls();
  61. DWORD dwFlags = p1.ev_long;
  62. dwFlags &= ~tls.InitStatus;
  63. ResetWin32Errors();
  64. if (dwFlags & VFP2C_INIT_MARSHAL)
  65. {
  66. if (VFP2C_Init_Marshal(tls))
  67. tls.InitStatus |= VFP2C_INIT_MARSHAL;
  68. }
  69. #ifndef _THREADSAFE
  70. if (dwFlags & VFP2C_INIT_ASYNC)
  71. {
  72. if (VFP2C_Init_Async(tls))
  73. tls.InitStatus |= VFP2C_INIT_ASYNC;
  74. }
  75. #endif
  76. if (dwFlags & VFP2C_INIT_FILE)
  77. {
  78. if (VFP2C_Init_File(tls))
  79. tls.InitStatus |= VFP2C_INIT_FILE;
  80. }
  81. if (dwFlags & VFP2C_INIT_WINSOCK)
  82. {
  83. if (VFP2C_Init_Winsock(tls))
  84. tls.InitStatus |= VFP2C_INIT_WINSOCK;
  85. }
  86. if (dwFlags & VFP2C_INIT_ODBC)
  87. {
  88. if (VFP2C_Init_Odbc(tls))
  89. tls.InitStatus |= VFP2C_INIT_ODBC;
  90. }
  91. if (dwFlags & VFP2C_INIT_NETAPI)
  92. {
  93. if (VFP2C_Init_Netapi(tls))
  94. tls.InitStatus |= VFP2C_INIT_NETAPI;
  95. }
  96. #ifndef _THREADSAFE
  97. if (dwFlags & VFP2C_INIT_CALLBACK)
  98. {
  99. if (VFP2C_Init_Callback(tls))
  100. tls.InitStatus |= VFP2C_INIT_CALLBACK;
  101. }
  102. #endif
  103. if (dwFlags & VFP2C_INIT_RAS)
  104. {
  105. if (VFP2C_Init_Ras(tls))
  106. tls.InitStatus |= VFP2C_INIT_RAS;
  107. }
  108. if (dwFlags & VFP2C_INIT_IPHELPER)
  109. {
  110. if (VFP2C_Init_IpHelper(tls))
  111. tls.InitStatus |= VFP2C_INIT_IPHELPER;
  112. }
  113. #ifndef _THREADSAFE
  114. if (dwFlags & VFP2C_INIT_URLMON)
  115. {
  116. if (VFP2C_Init_Urlmon(tls))
  117. tls.InitStatus |= VFP2C_INIT_URLMON;
  118. }
  119. #endif
  120. if (dwFlags & VFP2C_INIT_COM)
  121. {
  122. VFP2C_Init_Com(tls);
  123. // gnInitStatus |= VFP2C_INIT_COM; -> commented for the same reason as VFP2C_Init_Marshal
  124. }
  125. /*
  126. if (dwFlags & VFP2C_INIT_WININET)
  127. {
  128. if (VFP2C_Init_WinInet())
  129. tls.InitStatus |= VFP2C_INIT_WININET;
  130. }
  131. */
  132. Return(tls.ErrorCount == -1);
  133. }
  134. /* error handling routine to store the last error occurred in a Win32 API call
  135. called through the macros SAVEWIN32ERROR, ADDWIN32ERROR or RAISEWIN32ERROR */
  136. void _stdcall Win32ErrorHandler(char *pFunction, DWORD nErrorNo, bool bAddError, bool bRaise)
  137. {
  138. VFP2CTls& tls = VFP2CTls::Tls();
  139. if (bAddError)
  140. {
  141. if (tls.ErrorCount == VFP2C_MAX_ERRORS)
  142. return;
  143. tls.ErrorCount++;
  144. }
  145. else
  146. tls.ErrorCount = 0;
  147. LPVFP2CERROR pError = &tls.ErrorInfo[tls.ErrorCount];
  148. pError->nErrorType = VFP2C_ERRORTYPE_WIN32;
  149. pError->nErrorNo = nErrorNo;
  150. strncpy(pError->aErrorFunction,pFunction,VFP2C_ERROR_FUNCTION_LEN);
  151. FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM, 0, nErrorNo, 0, pError->aErrorMessage,VFP2C_ERROR_MESSAGE_LEN,0);
  152. if (bRaise)
  153. _UserError(pError->aErrorMessage);
  154. }
  155. void _stdcall CustomErrorHandler(char *pFunction, char* pErrorMessage, bool bAddError, bool bRaise, va_list lpArgs)
  156. {
  157. VFP2CTls& tls = VFP2CTls::Tls();
  158. if (bAddError)
  159. {
  160. if (tls.ErrorCount == VFP2C_MAX_ERRORS)
  161. return;
  162. tls.ErrorCount++;
  163. }
  164. else
  165. tls.ErrorCount = 0;
  166. LPVFP2CERROR pError = &tls.ErrorInfo[tls.ErrorCount];
  167. pError->nErrorType = VFP2C_ERRORTYPE_WIN32;
  168. pError->nErrorNo = E_CUSTOMERROR;
  169. strncpy(pError->aErrorFunction,pFunction,VFP2C_ERROR_FUNCTION_LEN);
  170. printfex(pError->aErrorMessage, pErrorMessage, lpArgs);
  171. if (bRaise)
  172. _UserError(pError->aErrorMessage);
  173. }
  174. void _stdcall CustomErrorHandlerEx(char *pFunction, char *pErrorMessage, int nErrorNo, bool bAddError, bool bRaise, va_list lpArgs)
  175. {
  176. VFP2CTls& tls = VFP2CTls::Tls();
  177. if (bAddError)
  178. {
  179. if (tls.ErrorCount == VFP2C_MAX_ERRORS)
  180. return;
  181. tls.ErrorCount++;
  182. }
  183. else
  184. tls.ErrorCount = 0;
  185. LPVFP2CERROR pError = &tls.ErrorInfo[tls.ErrorCount];
  186. pError->nErrorType = VFP2C_ERRORTYPE_WIN32;
  187. pError->nErrorNo = nErrorNo;
  188. strncpy(pError->aErrorFunction, pFunction,VFP2C_ERROR_FUNCTION_LEN);
  189. printfex(pError->aErrorMessage, pErrorMessage, lpArgs);
  190. if (bRaise)
  191. _UserError(pError->aErrorMessage);
  192. }
  193. void _cdecl SaveCustomError(char *pFunction, char *pMessage, ...)
  194. {
  195. va_list lpArgs;
  196. va_start(lpArgs, pMessage);
  197. CustomErrorHandler(pFunction, pMessage, false, false, lpArgs);
  198. va_end(lpArgs);
  199. }
  200. void _cdecl AddCustomError(char *pFunction, char *pMessage, ...)
  201. {
  202. va_list lpArgs;
  203. va_start(lpArgs, pMessage);
  204. CustomErrorHandler(pFunction, pMessage, true, false, lpArgs);
  205. va_end(lpArgs);
  206. }
  207. void _cdecl RaiseCustomError(char *pFunction, char *pMessage, ...)
  208. {
  209. va_list lpArgs;
  210. va_start(lpArgs, pMessage);
  211. CustomErrorHandler(pFunction, pMessage, false, true, lpArgs);
  212. va_end(lpArgs);
  213. }
  214. void _cdecl SaveCustomErrorEx(char *pFunction, char *pMessage, int nErrorNo, ...)
  215. {
  216. va_list lpArgs;
  217. va_start(lpArgs, nErrorNo);
  218. CustomErrorHandlerEx(pFunction, pMessage, nErrorNo, false, false, lpArgs);
  219. va_end(lpArgs);
  220. }
  221. void _cdecl AddCustomErrorEx(char *pFunction, char *pMessage, int nErrorNo, ...)
  222. {
  223. va_list lpArgs;
  224. va_start(lpArgs, nErrorNo);
  225. CustomErrorHandlerEx(pFunction, pMessage, nErrorNo, true, false, lpArgs);
  226. va_end(lpArgs);
  227. }
  228. void _cdecl RaiseCustomErrorEx(char *pFunction, char *pMessage, int nErrorNo, ...)
  229. {
  230. va_list lpArgs;
  231. va_start(lpArgs, nErrorNo);
  232. CustomErrorHandlerEx(pFunction, pMessage, nErrorNo, false, true, lpArgs);
  233. va_end(lpArgs);
  234. }
  235. void _fastcall VFP2CSys(ParamBlk *parm)
  236. {
  237. try
  238. {
  239. switch (p1.ev_long)
  240. {
  241. case 1: /* library's HINSTANCE/HMODULE */
  242. if (PCount() == 2)
  243. throw E_INVALIDPARAMS;
  244. Return(ghModule);
  245. break;
  246. case 2: /* library heap HANDLE */
  247. if (PCount() == 2)
  248. throw E_INVALIDPARAMS;
  249. Return(VFP2CTls::Heap);
  250. break;
  251. case 3: /* set or return Unicode conversion codepage */
  252. if (PCount() == 2)
  253. {
  254. if (Vartype(p2) == 'I' || Vartype(p2) == 'N')
  255. {
  256. if (IsValidCodePage((UINT)p2.ev_long))
  257. {
  258. VFP2CTls::Tls().ConvCP = (UINT)p2.ev_long;
  259. Return(true);
  260. }
  261. else
  262. Return(false);
  263. }
  264. else
  265. throw E_INVALIDPARAMS;
  266. }
  267. else
  268. Return(VFP2CTls::Tls().ConvCP);
  269. break;
  270. default: /* else wrong parameter */
  271. throw E_INVALIDPARAMS;
  272. }
  273. }
  274. catch(int nErrorNo)
  275. {
  276. RaiseError(nErrorNo);
  277. }
  278. }
  279. void _fastcall FormatMessageEx(ParamBlk *parm)
  280. {
  281. try
  282. {
  283. DWORD nLanguage = 0;
  284. DWORD nFlags = FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS;
  285. LPCVOID lpModule = 0;
  286. FoxString pMessage(VFP2C_ERROR_MESSAGE_LEN);
  287. if (PCount() == 2)
  288. nLanguage = p2.ev_long;
  289. else if (PCount() == 3)
  290. {
  291. nLanguage = p2.ev_long;
  292. lpModule = reinterpret_cast<LPCVOID>(p3.ev_long);
  293. nFlags |= FORMAT_MESSAGE_FROM_HMODULE;
  294. }
  295. pMessage.Len(FormatMessage(nFlags, lpModule, p1.ev_long, nLanguage, pMessage, pMessage.Size(), 0));
  296. if (pMessage.Len())
  297. pMessage.Return();
  298. else
  299. {
  300. SaveWin32Error("FormatMessage", GetLastError());
  301. throw E_APIERROR;
  302. }
  303. }
  304. catch(int nErrorNo)
  305. {
  306. RaiseError(nErrorNo);
  307. }
  308. }
  309. void _fastcall AErrorEx(ParamBlk *parm)
  310. {
  311. try
  312. {
  313. VFP2CTls& tls = VFP2CTls::Tls();
  314. if (tls.ErrorCount == -1)
  315. {
  316. Return(0);
  317. return;
  318. }
  319. FoxArray pArray(p1, tls.ErrorCount+1, 4);
  320. FoxString pErrorInfo(VFP2C_ERROR_MESSAGE_LEN);
  321. FoxValue vNullValue;
  322. unsigned int nRow = 0;
  323. for (int xj = 0; xj <= tls.ErrorCount; xj++)
  324. {
  325. nRow++;
  326. pArray(nRow,1) = tls.ErrorInfo[xj].nErrorNo;
  327. pArray(nRow,2) = pErrorInfo = tls.ErrorInfo[xj].aErrorFunction;
  328. pArray(nRow,3) = pErrorInfo = tls.ErrorInfo[xj].aErrorMessage;
  329. if (tls.ErrorInfo[xj].nErrorType == VFP2C_ERRORTYPE_ODBC)
  330. pArray(nRow,4) = pErrorInfo = tls.ErrorInfo[xj].aSqlState;
  331. else
  332. pArray(nRow,4) = vNullValue;
  333. }
  334. pArray.ReturnRows();
  335. }
  336. catch(int nErrorNo)
  337. {
  338. RaiseError(nErrorNo);
  339. }
  340. }
  341. #ifdef __cplusplus
  342. extern "C" {
  343. #endif
  344. FoxInfo VFP2CFuncs[] =
  345. {
  346. /* common library routines (startup, cleanup & internal settings) */
  347. {"OnLoad", (FPFI) OnLoad, CALLONLOAD, ""},
  348. {"OnUnload", (FPFI) OnUnload, CALLONUNLOAD, ""},
  349. {"InitVFP2C32", (FPFI) InitVFP2C32, 1, "I"},
  350. {"VFP2CSys", (FPFI) VFP2CSys, 2, "I.?"},
  351. /* memory management routines */
  352. {"AllocMem", (FPFI) AllocMem, 1, "I"},
  353. {"AllocMemTo", (FPFI) AllocMemTo, 2, "II"},
  354. {"ReAllocMem", (FPFI) ReAllocMem, 2, "II"},
  355. {"FreeMem", (FPFI) FreeMem, 1, "I"},
  356. {"FreePMem", (FPFI) FreePMem, 1, "I"},
  357. {"FreeRefArray", (FPFI) FreeRefArray, 3, "III"},
  358. {"SizeOfMem", (FPFI) SizeOfMem, 1, "I"},
  359. {"ValidateMem", (FPFI) ValidateMem, 1, "I"},
  360. {"CompactMem", (FPFI) CompactMem, 0, ""},
  361. {"AMemBlocks", (FPFI) AMemBlocks, 1, "C"},
  362. /* wrappers around Global memory functions */
  363. {"AllocHGlobal", (FPFI) AllocHGlobal, 2, "I.I"},
  364. {"FreeHGlobal", (FPFI) FreeHGlobal, 1, "I"},
  365. {"ReAllocHGlobal", (FPFI) ReAllocHGlobal, 3, "II.I"},
  366. {"LockHGlobal", (FPFI) LockHGlobal, 1, "I"},
  367. {"UnlockHGlobal", (FPFI) UnlockHGlobal, 1, "I"},
  368. /* read/write C types from/to memory */
  369. {"WriteChar", (FPFI) WriteChar, 2, "IC"},
  370. {"WritePChar", (FPFI) WritePChar, 2, "IC"},
  371. {"WriteInt8", (FPFI) WriteInt8, 2, "II"},
  372. {"WritePInt8", (FPFI) WritePInt8, 2, "II"},
  373. {"WriteUInt8", (FPFI) WriteUInt8, 2, "II"},
  374. {"WritePUInt8", (FPFI) WritePUInt8, 2, "II"},
  375. {"WriteShort", (FPFI) WriteShort, 2, "II"},
  376. {"WritePShort", (FPFI) WritePShort, 2, "II"},
  377. {"WriteUShort", (FPFI) WriteUShort, 2, "II"},
  378. {"WritePUShort", (FPFI) WritePUShort, 2, "II"},
  379. {"WriteInt", (FPFI) WriteInt, 2, "II"},
  380. {"WritePInt", (FPFI) WritePInt, 2, "II"},
  381. {"WriteUInt", (FPFI) WriteUInt, 2, "IN"},
  382. {"WritePUInt", (FPFI) WritePUInt, 2, "IN"},
  383. {"WriteInt64", (FPFI) WriteInt64, 2, "I?"},
  384. {"WritePInt64", (FPFI) WritePInt64, 2, "I?"},
  385. {"WriteUInt64", (FPFI) WriteUInt64, 2, "I?"},
  386. {"WritePUInt64", (FPFI) WritePUInt64, 2, "I?"},
  387. {"WritePointer", (FPFI) WritePointer, 2, "IN"},
  388. {"WritePPointer", (FPFI) WritePPointer, 2, "IN"},
  389. {"WriteFloat", (FPFI) WriteFloat, 2, "IN"},
  390. {"WritePFloat", (FPFI) WritePFloat, 2, "IN"},
  391. {"WriteDouble", (FPFI) WriteDouble, 2, "IN"},
  392. {"WritePDouble", (FPFI) WritePDouble, 2, "IN"},
  393. {"WriteCString", (FPFI) WriteCString, 2, "IC"},
  394. {"WritePCString", (FPFI) WritePCString, 2, "I?"},
  395. {"WriteGPCString", (FPFI) WriteGPCString, 2, "I?"},
  396. {"WriteCharArray", (FPFI) WriteCharArray, 3, "IC.I"},
  397. {"WriteWString", (FPFI) WriteWString, 3, "IC.I"},
  398. {"WritePWString", (FPFI) WritePWString, 3, "I?.I"},
  399. {"WriteWCharArray", (FPFI) WriteWCharArray, 4, "ICI.I"},
  400. {"WriteWChar", (FPFI) WriteWChar, 3, "IC.I"},
  401. {"WritePWChar", (FPFI) WritePWChar, 3, "IC.I"},
  402. {"WriteBytes", (FPFI) WriteBytes, 3, "IC.I"},
  403. {"WriteLogical", (FPFI) WriteLogical, 2, "IL"},
  404. {"WritePLogical", (FPFI) WritePLogical, 2, "IL"},
  405. {"ReadChar", (FPFI) ReadChar, 1, "I"},
  406. {"ReadPChar", (FPFI) ReadPChar, 2, "I.?"},
  407. {"ReadInt8", (FPFI) ReadInt8, 1, "I"},
  408. {"ReadPInt8", (FPFI) ReadPInt8, 1, "I"},
  409. {"ReadUInt8", (FPFI) ReadUInt8, 1, "I"},
  410. {"ReadPUInt8", (FPFI) ReadPUInt8, 1, "I"},
  411. {"ReadShort", (FPFI) ReadShort, 1, "I"},
  412. {"ReadPShort", (FPFI) ReadPShort, 1, "I"},
  413. {"ReadUShort", (FPFI) ReadUShort, 1, "I"},
  414. {"ReadPUShort", (FPFI) ReadPUShort, 1, "I"},
  415. {"ReadInt", (FPFI) ReadInt, 1, "I"},
  416. {"ReadPInt", (FPFI) ReadPInt, 1, "I"},
  417. {"ReadUInt", (FPFI) ReadUInt, 1, "I"},
  418. {"ReadPUInt", (FPFI) ReadPUInt, 1, "I"},
  419. {"ReadInt64", (FPFI) ReadInt64, 2, "I.I"},
  420. {"ReadPInt64", (FPFI) ReadPInt64, 2, "I.I"},
  421. {"ReadUInt64", (FPFI) ReadUInt64, 2, "I.I"},
  422. {"ReadPUInt64", (FPFI) ReadPUInt64, 2, "I.I"},
  423. {"ReadFloat", (FPFI) ReadFloat, 1, "I"},
  424. {"ReadPFloat", (FPFI) ReadPFloat, 1, "I"},
  425. {"ReadDouble", (FPFI) ReadDouble, 1, "I"},
  426. {"ReadPDouble", (FPFI) ReadPDouble, 1, "I"},
  427. {"ReadLogical", (FPFI) ReadLogical, 1, "I"},
  428. {"ReadPLogical", (FPFI) ReadPLogical, 1, "I"},
  429. {"ReadPointer",(FPFI) ReadPointer, 1, "I"},
  430. {"ReadPPointer",(FPFI) ReadPPointer, 1, "I"},
  431. {"ReadCString", (FPFI) ReadCString, 1, "I"},
  432. {"ReadPCString", (FPFI) ReadPCString, 2, "I.?"},
  433. {"ReadCharArray", (FPFI) ReadCharArray, 2, "II"},
  434. {"ReadWString", (FPFI) ReadWString, 2, "I.I"},
  435. {"ReadPWString", (FPFI) ReadPWString, 3, "I.I.?"},
  436. {"ReadWCharArray", (FPFI) ReadWCharArray, 3, "II.I"},
  437. {"ReadBytes", (FPFI) ReadBytes, 2, "II"},
  438. /* convert FoxPro to C array and vice versa */
  439. {"MarshalFoxArray2CArray", (FPFI) MarshalFoxArray2CArray, 5 ,"IRI.I.I"},
  440. {"MarshalCArray2FoxArray", (FPFI) MarshalCArray2FoxArray, 5 ,"IRI.I.I"},
  441. /* convert FoxPro fields in cursor to C array and vice versa */
  442. {"MarshalCursor2CArray", (FPFI) MarshalCursor2CArray, 5,"ICI.I.I"},
  443. {"MarshalCArray2Cursor", (FPFI) MarshalCArray2Cursor, 5,"ICI.I.I"},
  444. /* numeric to binary & vice versa conversion routines */
  445. {"Str2Short", (FPFI) Str2Short, 1, "C"},
  446. {"Short2Str", (FPFI) Short2Str, 1, "I"},
  447. {"Str2UShort", (FPFI) Str2UShort, 1, "C"},
  448. {"UShort2Str", (FPFI) UShort2Str, 1, "I"},
  449. {"Str2Long", (FPFI) Str2Long, 1, "C"},
  450. {"Long2Str", (FPFI) Long2Str, 1, "I"},
  451. {"Str2ULong", (FPFI) Str2ULong, 1, "C"},
  452. {"ULong2Str", (FPFI) ULong2Str, 1, "?"},
  453. {"Str2Double", (FPFI) Str2Double, 1, "C"},
  454. {"Double2Str", (FPFI) Double2Str, 1, "N"},
  455. {"Str2Float", (FPFI) Str2Float, 1, "C"},
  456. {"Float2Str", (FPFI) Float2Str, 1, "N"},
  457. {"Str2Int64", (FPFI) Str2Int64, 2, "C.I"},
  458. {"Int642Str", (FPFI) Int642Str, 2, "?.I"},
  459. {"Str2UInt64", (FPFI) Str2UInt64, 2, "C.I"},
  460. {"UInt642Str", (FPFI) UInt642Str, 2, "?.I"},
  461. /* toolhelp32 api wrappers */
  462. {"AProcesses", (FPFI) AProcesses, 1, "C"},
  463. {"AProcessThreads", (FPFI) AProcessThreads, 2, "CI"},
  464. {"AProcessModules", (FPFI) AProcessModules, 2, "CI"},
  465. {"AProcessHeaps", (FPFI) AProcessHeaps, 2, "CI"},
  466. {"AHeapBlocks", (FPFI) AHeapBlocks, 3, "CII"},
  467. {"ReadProcessMemoryEx", (FPFI) ReadProcessMemoryEx, 3, "III"},
  468. /* enumeration routines */
  469. {"AWindowStations", (FPFI) AWindowStations, 1, "C"},
  470. {"ADesktops", (FPFI) ADesktops, 2, "C.I"},
  471. {"AWindows", (FPFI) AWindows, 3, "CI.I"},
  472. {"AWindowsEx", (FPFI) AWindowsEx, 4, "CCI.I"},
  473. {"AWindowProps", (FPFI) AWindowProps, 2, "CI"},
  474. {"AResourceTypes", (FPFI) AResourceTypes, 2, "CI"},
  475. {"AResourceNames", (FPFI) AResourceNames, 3, "CI?"},
  476. {"AResourceLanguages", (FPFI) AResourceLanguages, 4, "CI??"},
  477. {"AResolutions", (FPFI) AResolutions, 2, "C.C"},
  478. {"ADisplayDevices", (FPFI) ADisplayDevices, 2, "C.C"},
  479. /* ODBC functions */
  480. {"CreateSQLDataSource", (FPFI) CreateSQLDataSource, 3, "CC.I"},
  481. {"DeleteSQLDataSource", (FPFI) DeleteSQLDataSource, 3, "CC.I"},
  482. {"ChangeSQLDataSource", (FPFI) ChangeSQLDataSource, 3, "CC.I"},
  483. {"ASQLDataSources", (FPFI) ASQLDataSources, 2, "C.I"},
  484. {"ASQLDrivers", (FPFI) ASQLDrivers, 1, "C"},
  485. {"SQLGetPropEx", (FPFI) SQLGetPropEx, 3, "?CR"},
  486. {"SQLSetPropEx", (FPFI) SQLSetPropEx, 3, "?C.?"},
  487. {"SQLExecEx", (FPFI) SQLExecEx, 9, "I.C.C.C.I.C.C.C.I"},
  488. {"SQLPrepareEx", (FPFI) SQLPrepareEx, 9, "IC.C.C.I.C.C.C.I"},
  489. {"SQLCancelEx", (FPFI) SQLCancelEx, 1, "I"},
  490. //{"TableUpdateEx", (FPFI) TableUpdateEx, 6, "IICCC.C"},
  491. /* printer functions */
  492. {"APrintersEx", (FPFI) APrintersEx, 5, "C.?.I.I.I"},
  493. {"APrintJobs", (FPFI) APrintJobs, 3, "CC.I"},
  494. {"APrinterForms", (FPFI) APrinterForms, 2, "C.C"},
  495. {"APaperSizes", (FPFI) APaperSizes, 4, "CCC.I"},
  496. {"APrinterTrays", (FPFI) APrinterTrays, 3, "CCC"},
  497. /* registry functions */
  498. {"CreateRegistryKey", (FPFI) CreateRegistryKey, 5, "IC.I.I.C"},
  499. {"DeleteRegistryKey", (FPFI) DeleteRegistryKey, 3, "IC.I"},
  500. {"OpenRegistryKey", (FPFI) OpenRegistryKey, 3, "IC.I"},
  501. {"CloseRegistryKey", (FPFI) CloseRegistryKey, 1, "I"},
  502. {"ReadRegistryKey", (FPFI) ReadRegistryKey, 4, "I.C.C.C"},
  503. {"WriteRegistryKey", (FPFI) WriteRegistryKey, 5, "I?.C.C.I"},
  504. {"ARegistryKeys", (FPFI) ARegistryKeys, 4, "CIC.I"},
  505. {"ARegistryValues", (FPFI) ARegistryValues, 4, "CIC.I"},
  506. {"RegistryValuesToObject", (FPFI) RegistryValuesToObject, 3, "ICO"},
  507. {"RegistryHiveToObject", (FPFI) RegistryHiveToObject, 3, "ICO"},
  508. /* file system functions */
  509. {"ADirEx",(FPFI) ADirEx, 4, "CC.I.I"},
  510. {"AFileAttributes", (FPFI) AFileAttributes, 3, "CC.L"},
  511. {"AFileAttributesEx", (FPFI) AFileAttributesEx, 3, "CC.L"},
  512. {"ADirectoryInfo", (FPFI) ADirectoryInfo, 2, "CC"},
  513. {"GetFileTimes", (FPFI) GetFileTimes, 5, "C?.?.?.L"},
  514. {"SetFileTimes", (FPFI) SetFileTimes, 5, "C?.?.?.L"},
  515. {"GetFileSize", (FPFI) GetFileSizeLib, 1, "C"},
  516. {"GetFileAttributes", (FPFI) GetFileAttributesLib, 1, "C"},
  517. {"SetFileAttributes", (FPFI) SetFileAttributesLib, 2, "CI"},
  518. {"GetFileOwner", (FPFI) GetFileOwner, 4, "CR.R.R"},
  519. {"GetLongPathName", (FPFI) GetLongPathNameLib, 1, "C"},
  520. {"GetShortPathName", (FPFI) GetShortPathNameLib, 1, "C"},
  521. {"DeleteDirectory", (FPFI) DeleteDirectory, 1, "C"},
  522. {"GetWindowsDirectory", (FPFI) GetWindowsDirectoryLib, 0, ""},
  523. {"GetSystemDirectory", (FPFI) GetSystemDirectoryLib, 0, ""},
  524. {"ExpandEnvironmentStrings", (FPFI) ExpandEnvironmentStringsLib, 1, "C"},
  525. {"GetOpenFileName", (FPFI) GetOpenFileNameLib, 8, ".I.C.C.C.C.I.C.C"},
  526. {"GetSaveFileName", (FPFI) GetSaveFileNameLib, 7, ".I.C.C.C.C.I.C"},
  527. {"ADriveInfo", (FPFI) ADriveInfo, 1, "C"},
  528. {"AVolumes", (FPFI) AVolumes, 1, "C"},
  529. {"AVolumeMountPoints", (FPFI) AVolumeMountPoints, 2, "CC"},
  530. {"AVolumePaths", (FPFI) AVolumePaths, 2, "CC"},
  531. {"AVolumeInformation", (FPFI) AVolumeInformation, 2, "CC"},
  532. {"CopyFileEx", (FPFI) CopyFileExLib, 5, "CC.C.I.I"},
  533. {"MoveFileEx", (FPFI) MoveFileExLib, 5, "CC.C.I.I"},
  534. {"CompareFileTimes", (FPFI) CompareFileTimes, 2, "CC"},
  535. {"DeleteFileEx", (FPFI) DeleteFileEx, 1, "C"},
  536. /* extended VFP like file functions */
  537. {"FCreateEx", (FPFI) FCreateEx, 4, "C.I.I.I"},
  538. {"FOpenEx", (FPFI) FOpenEx, 4, "C.I.I.I"},
  539. {"FCloseEx", (FPFI) FCloseEx, 1, "I"},
  540. {"FReadEx", (FPFI) FReadEx, 2, "II"},
  541. {"FWriteEx", (FPFI) FWriteEx, 3, "IC.I"},
  542. {"FGetsEx", (FPFI) FGetsEx, 2, "I.I"},
  543. {"FPutsEx", (FPFI) FPutsEx, 3, "I.C.I"},
  544. {"FSeekEx", (FPFI) FSeekEx, 3, "IN.I"},
  545. {"FEoFEx", (FPFI) FEoFEx, 1, "I"},
  546. {"FChSizeEx", (FPFI) FChSizeEx, 2, "IN"},
  547. {"FFlushEx", (FPFI) FFlushEx, 1, "I"},
  548. {"FLockFile", (FPFI) FLockFile, 3, "I??"},
  549. {"FUnlockFile", (FPFI) FUnlockFile, 3, "I??"},
  550. {"FLockFileEx", (FPFI) FLockFileEx, 4, "I??.I"},
  551. {"FUnlockFileEx", (FPFI) FUnlockFileEx, 3, "I??"},
  552. {"AFHandlesEx", (FPFI) AFHandlesEx, 1, "C"},
  553. /* some shell32.dll wrappers */
  554. {"SHSpecialFolder", (FPFI) SHSpecialFolder, 3, "IR.L"},
  555. {"SHMoveFiles", (FPFI) SHMoveFiles, 4, "CCI.C"},
  556. {"SHCopyFiles", (FPFI) SHCopyFiles, 4, "CC.I.C"},
  557. {"SHDeleteFiles", (FPFI) SHDeleteFiles, 3, "C.I.C"},
  558. {"SHRenameFiles", (FPFI) SHRenameFiles, 3, "CC.I"},
  559. {"SHBrowseFolder", (FPFI) SHBrowseFolder, 5, "CIR.C.C"},
  560. /* windows message hooks */
  561. #ifndef _THREADSAFE
  562. {"BindEventsEx", (FPFI) BindEventsEx, 6, "II?C.?.I"},
  563. {"UnbindEventsEx", (FPFI) UnbindEventsEx, 3, "I.I.L"},
  564. /* C callback function emulation */
  565. {"CreateCallbackFunc", (FPFI) CreateCallbackFunc, 5, "CCC.O.I"},
  566. {"DestroyCallbackFunc", (FPFI) DestroyCallbackFunc, 1, "I"},
  567. #endif
  568. // some window functions
  569. {"GetWindowTextEx", (FPFI) GetWindowTextEx, 2, "I.L"},
  570. {"GetWindowRectEx", (FPFI) GetWindowRectEx, 2, "IC"},
  571. {"CenterWindowEx", (FPFI) CenterWindowEx, 2, "I.I"},
  572. {"ADesktopArea", (FPFI) ADesktopArea, 1, "C"},
  573. {"MessageBoxEx", (FPFI) MessageBoxExLib, 8, "C.I.C.?.?.?.?.I"},
  574. /* asynchronous notification functions */
  575. #ifndef _THREADSAFE
  576. {"FindFileChange", (FPFI) FindFileChange, 4, "CLIC"},
  577. {"CancelFileChange", (FPFI) CancelFileChange, 1, "I"},
  578. {"FindRegistryChange", (FPFI) FindRegistryChange, 5, "ICLIC"},
  579. {"CancelRegistryChange", (FPFI) CancelRegistryChange, 1, "I"},
  580. {"AsyncWaitForObject", (FPFI) AsyncWaitForObject, 2, "IC"},
  581. {"CancelWaitForObject", (FPFI) CancelWaitForObject, 1, "I"},
  582. #endif
  583. /* time conversion routines */
  584. {"DT2FT", (FPFI) DT2FT, 3, "TI.L"},
  585. {"FT2DT", (FPFI) FT2DT, 2, "I.L"},
  586. {"DT2ST", (FPFI) DT2ST, 3, "TI.L"},
  587. {"ST2DT", (FPFI) ST2DT, 2, "I.L"},
  588. {"DT2UTC", (FPFI) DT2UTC, 1, "T"},
  589. {"UTC2DT", (FPFI) UTC2DT, 1, "T"},
  590. {"DT2Timet", (FPFI) DT2Timet, 2, "T.L"},
  591. {"Timet2DT", (FPFI) Timet2DT, 2, "I.L" },
  592. {"DT2Double", (FPFI) DT2Double, 1, "T"},
  593. {"Double2DT", (FPFI) Double2DT, 1, "N"},
  594. {"SetSystemTime", (FPFI) SetSystemTimeLib, 2, "T.L"},
  595. {"GetSystemTime", (FPFI) GetSystemTimeLib, 1, ".L"},
  596. {"ATimeZones", (FPFI) ATimeZones, 1, "C"},
  597. /* netapi32 wrappers */
  598. {"ANetFiles", (FPFI) ANetFiles, 4, "C.?.?.?"},
  599. {"ANetServers", (FPFI) ANetServers, 4, "C.I.I.?"},
  600. {"GetServerTime", (FPFI) GetServerTime, 2, "C.I"},
  601. /* SNTP */
  602. {"SyncToSNTPServer", (FPFI) SyncToSNTPServer, 3, "C.I.I"},
  603. /* COM routines */
  604. {"CLSIDFromProgID", (FPFI) CLSIDFromProgIDLib, 1, "C"},
  605. {"ProgIDFromCLSID", (FPFI) ProgIDFromCLSIDLib, 1, "?"},
  606. {"CLSIDFromString", (FPFI) CLSIDFromStringLib, 1, "C"},
  607. {"StringFromCLSID", (FPFI) StringFromCLSIDLib, 1, "?"},
  608. {"IsEqualGuid", (FPFI) IsEqualGUIDLib, 2, "??"},
  609. {"CreateGuid", (FPFI) CreateGuid, 1, ".I"},
  610. {"RegisterActiveObject", (FPFI) RegisterActiveObjectLib, 2, "OC"},
  611. {"RegisterObjectAsFileMoniker", (FPFI) RegisterObjectAsFileMoniker, 3, "OCC"},
  612. {"RevokeActiveObject", (FPFI) RevokeActiveObjectLib, 1, "I"},
  613. {"CreateThreadObject", (FPFI) CreateThreadObject, 5, "C.?.L.I.I"},
  614. /* urlmon wrappers */
  615. #ifndef _THREADSAFE
  616. {"UrlDownloadToFileEx", (FPFI) UrlDownloadToFileEx, 5, "CC.C.L.L"},
  617. {"AbortUrlDownloadToFileEx", (FPFI) AbortUrlDownloadToFileEx, 1, "I"},
  618. #endif
  619. /* winsock functions */
  620. {"AIPAddresses", (FPFI) AIPAddresses, 1, "C"},
  621. {"ResolveHostToIp", (FPFI) ResolveHostToIp, 2, "C.C"},
  622. /* IP Helper */
  623. {"Ip2MacAddress", (FPFI) Ip2MacAddress, 1, "C"},
  624. {"IcmpPing", (FPFI)IcmpPing, 8, "CC.I.I.I.I.L.I"},
  625. /* WinInet wrappers */
  626. /*
  627. {"InitWinInet", (FPFI) InitWinInet, 5, ".C.I.C.C.I"},
  628. {"FTPConnect", (FPFI) FTPConnect, 5, "CCC.I.I"},
  629. {"FTPDisconnect", (FPFI) FTPDisconnect, 1, "I"},
  630. {"FTPGetFile", (FPFI) FTPGetFileLib, 2, "IC"},
  631. {"FTPPutFile", (FPFI) FTPPutFileLib, 2, "IC"},
  632. {"FTPGetDirectory", (FPFI) FTPGetDirectory, 1, "I"},
  633. {"FTPSetDirectory", (FPFI) FTPSetDirectory, 2, "IC"},
  634. {"AFTPFiles", (FPFI) AFTPFiles, 3, "C"},
  635. {"HTTPGetFile", (FPFI) HTTPGetFile, 4, "C.C.C.L"},
  636. */
  637. /* service functions */
  638. {"OpenService", (FPFI) OpenServiceLib, 4, "C.I.C.C"},
  639. {"CloseServiceHandle", (FPFI) CloseServiceHandleLib, 1, "I"},
  640. {"StartService", (FPFI) StartServiceLib, 5, "?.?.?.C.C"},
  641. {"StopService", (FPFI) StopServiceLib, 5, "?.?.L.C.C"},
  642. {"PauseService", (FPFI) PauseService, 4, "?.?.C.C"},
  643. {"ContinueService", (FPFI) ContinueService, 4, "?.?.C.C"},
  644. {"ControlService", (FPFI) ControlServiceLib, 4, "?.I.C.C"},
  645. {"AServiceStatus", (FPFI) AServiceStatus, 4, "C?.C.C"},
  646. {"AServiceConfig", (FPFI) AServiceConfig, 4, "C?.C.C"},
  647. {"AServices", (FPFI) AServices, 5, "C.C.C.I.I"},
  648. {"ADependentServices", (FPFI) ADependentServices, 4, "C?.C.C"},
  649. {"WaitForServiceStatus", (FPFI) WaitForServiceStatus, 5, "?I.I.C.C"},
  650. {"CreateService", (FPFI) CreateServiceLib, 12, "CC.?.?.?.C.C.C.C.C.C.C"},
  651. {"DeleteService", (FPFI) DeleteServiceLib, 3, "?.C.C"},
  652. /* misc data conversion/string functions */
  653. {"PG_ByteA2Str", (FPFI) PG_ByteA2Str, 1, "?"},
  654. {"PG_Str2ByteA", (FPFI) PG_Str2ByteA, 2, "?.L"},
  655. {"RGB2Colors", (FPFI) RGB2Colors, 5, "IRRR.R"},
  656. {"Colors2RGB", (FPFI) Colors2RGB, 4, "III.I"},
  657. {"GetCursorPosEx", (FPFI) GetCursorPosEx, 4, "RR.L.?"},
  658. {"Int64_Add", (FPFI) Int64_Add, 3, "??.I"},
  659. {"Int64_Sub", (FPFI) Int64_Sub, 3, "??.I"},
  660. {"Int64_Mul", (FPFI) Int64_Mul, 3, "??.I"},
  661. {"Int64_Div", (FPFI) Int64_Div, 3, "??.I"},
  662. {"Int64_Mod", (FPFI) Int64_Mod, 3, "??.I"},
  663. {"Value2Variant", (FPFI) Value2Variant, 1, "?"},
  664. {"Variant2Value", (FPFI) Variant2Value, 1, "?"},
  665. {"Decimals", (FPFI) Decimals, 1, "N"},
  666. {"Num2Binary", (FPFI) Num2Binary, 1, "I"},
  667. {"CreatePublicShadowObjReference", (FPFI) CreatePublicShadowObjReference, 2, "CO"},
  668. {"ReleasePublicShadowObjReference", (FPFI) ReleasePublicShadowObjReference, 1, "C"},
  669. {"GetLocaleInfoEx", (FPFI) GetLocaleInfoExLib, 2, "I.I"},
  670. {"OsEx", (FPFI) OsEx, 0, ""},
  671. /* array routines */
  672. {"ASum", (FPFI) ASum, 2, "R.I"},
  673. {"AAverage", (FPFI) AAverage, 2, "R.I"},
  674. {"AMax", (FPFI) AMax, 2, "R.I"},
  675. {"AMin", (FPFI) AMin, 2, "R.I"},
  676. {"ASplitStr", (FPFI) ASplitStr, 3, "CCI"},
  677. /* RAS wrappers */
  678. {"ARasConnections", (FPFI) ARasConnections, 1, "C"},
  679. {"ARasDevices", (FPFI) ARasDevices, 1, "C"},
  680. {"ARasPhonebookEntries", (FPFI)ARasPhonebookEntries, 2, "C.C"},
  681. {"RasPhonebookDlgEx", (FPFI) RasPhonebookDlgEx, 4, ".?.?.?.I"},
  682. {"RasHangUpEx", (FPFI) RasHangUpEx, 1, "I"},
  683. {"RasGetConnectStatusEx", (FPFI) RasGetConnectStatusEx, 2, "IC"},
  684. {"RasDialDlgEx", (FPFI) RasDialDlgEx, 5, ".C.C.C.I.I"},
  685. {"RasClearConnectionStatisticsEx", (FPFI) RasClearConnectionStatisticsEx, 1, "I"},
  686. {"RasDialEx",(FPFI) RasDialEx, 5, ".?.C.C.I.I"},
  687. #ifndef _THREADSAFE
  688. {"RasConnectionNotificationEx", (FPFI) RasConnectionNotificationEx, 3, "IIC"},
  689. {"AbortRasConnectionNotificationEx", (FPFI) AbortRasConnectionNotificationEx, 1, "I"},
  690. #endif
  691. /* Font routines */
  692. {"AFontInfo", (FPFI) AFontInfo, 3, "C.I.I"},
  693. /* error handling routines */
  694. {"FormatMessageEx", (FPFI) FormatMessageEx, 3, "I.I.I"},
  695. {"AErrorEx", (FPFI) AErrorEx, 1, "C"}
  696. #ifdef _DEBUG
  697. ,{"AMemLeaks", (FPFI) AMemLeaks, 1, "C"}
  698. ,{"TrackMem", (FPFI) TrackMem, 2, "L.L"}
  699. #endif
  700. };
  701. FoxTable _FoxTable = {
  702. (FoxTable *)0, sizeof(VFP2CFuncs)/sizeof(FoxInfo), VFP2CFuncs
  703. };
  704. #ifdef __cplusplus
  705. }
  706. #endif