System.Data.SQLite

Check-in [89e5e0867e]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Removed some test stuff
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | sourceforge
Files: files | file ages | folders
SHA1: 89e5e0867e7b1037a5ff7e38d19be3b0888af9de
User & Date: rmsimpson 2006-02-10 15:04:28.000
Context
2006-02-10
15:08
Fixed a dispose issue for commands with active readers check-in: 505e5291d5 user: rmsimpson tags: sourceforge
15:04
Removed some test stuff check-in: 89e5e0867e user: rmsimpson tags: sourceforge
04:47
no message check-in: b83a6acadd user: rmsimpson tags: sourceforge
Changes
Unified Diff Ignore Whitespace Patch
Changes to SQLite.Interop/interop.c.
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#if _WIN32_WCE
#include "merge.h"
#else
#include "merge_full.h"
#endif // _WIN32_WCE
#endif // NDEBUG

HMODULE g_hMod = 0;

BOOL WINAPI DllMain(HMODULE hMod, DWORD dwReason, LPVOID pvReserved)
{
  if (dwReason == DLL_PROCESS_ATTACH)
    g_hMod = hMod;

  return TRUE;
}

__declspec(dllexport) void WINAPI testfunc()
{
  PIMAGE_DOS_HEADER pDos = (LPVOID)g_hMod;
}

// Forward declare this function, we're implementing it later
static void generateColumnNames(
  Parse *pParse,      /* Parser context */
  SrcList *pTabList,  /* List of tables */
  ExprList *pEList    /* Expressions defining the result set */
);








<
<
<
<
<
<
<
<
<
<
<
<
<
<
<







13
14
15
16
17
18
19















20
21
22
23
24
25
26
#if _WIN32_WCE
#include "merge.h"
#else
#include "merge_full.h"
#endif // _WIN32_WCE
#endif // NDEBUG
















// Forward declare this function, we're implementing it later
static void generateColumnNames(
  Parse *pParse,      /* Parser context */
  SrcList *pTabList,  /* List of tables */
  ExprList *pEList    /* Expressions defining the result set */
);