Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Support dynamic mscoree dependencies |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | sourceforge |
Files: | files | file ages | folders |
SHA1: |
108116574c839a830d86c4029893bc02 |
User & Date: | rmsimpson 2006-01-23 05:14:49.000 |
Context
2006-01-23
| ||
05:15 | Build changes check-in: bd756986ce user: rmsimpson tags: sourceforge | |
05:14 | Support dynamic mscoree dependencies check-in: 108116574c user: rmsimpson tags: sourceforge | |
2006-01-20
| ||
23:09 | no message check-in: 3f49013356 user: rmsimpson tags: sourceforge | |
Changes
Changes to SQLite.Interop/interop.c.
1 2 3 4 5 6 7 8 9 10 | /* This interop file must be included at or near the top of the select.c file of the SQLite3 source distribution. generateColumnNames() in the select.c must be renamed to _generateColumnNames */ #include "src/sqliteint.h" #include "src\os.h" | > > | > > > | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | /* This interop file must be included at or near the top of the select.c file of the SQLite3 source distribution. generateColumnNames() in the select.c must be renamed to _generateColumnNames */ #include "src/sqliteint.h" #include "src\os.h" #include <tchar.h> #if NDEBUG #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 */ ); |
︙ | ︙ |
Changes to SQLite.Interop/merge.h.
1 | // This code was automatically generated from assembly | | | | > < > > > > > > > > > | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | // This code was automatically generated from assembly // D:\src\SQLite.NET.Test\System.Data.SQLite\bin\CompactFramework\System.Data.SQLite.dll #include <windef.h> #pragma data_seg(".clr") #pragma comment(linker, "/SECTION:.clr,ER") char __ph[85156] = {0}; // The number of bytes to reserve #pragma data_seg() typedef BOOL (WINAPI *DLLMAIN)(HANDLE, DWORD, LPVOID); extern BOOL WINAPI _DllMainCRTStartup(HANDLE, DWORD, LPVOID); __declspec(dllexport) BOOL WINAPI _CorDllMainStub(HANDLE hModule, DWORD dwReason, LPVOID pvReserved) { HANDLE hMod; DLLMAIN proc; hMod = GetModuleHandle(_T("mscoree")); if (hMod) proc = (DLLMAIN)GetProcAddress(hMod, _T("_CorDllMain")); else proc = _DllMainCRTStartup; return proc(hModule, dwReason, pvReserved); } |
Added SQLite.Interop/merge_full.h.
> > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | // This code was automatically generated from assembly // D:\src\SQLite.NET.Test\System.Data.SQLite\bin\System.Data.SQLite.dll #include <windef.h> #pragma data_seg(".clr") #pragma comment(linker, "/SECTION:.clr,ER") char __ph[96452] = {0}; // The number of bytes to reserve #pragma data_seg() typedef BOOL (WINAPI *DLLMAIN)(HANDLE, DWORD, LPVOID); extern BOOL WINAPI _DllMainCRTStartup(HANDLE, DWORD, LPVOID); __declspec(dllexport) BOOL WINAPI _CorDllMainStub(HANDLE hModule, DWORD dwReason, LPVOID pvReserved) { HANDLE hMod; DLLMAIN proc; hMod = GetModuleHandle(_T("mscoree")); if (hMod) proc = (DLLMAIN)GetProcAddress(hMod, _T("_CorDllMain")); else proc = _DllMainCRTStartup; return proc(hModule, dwReason, pvReserved); } |