Changeset 205
- Timestamp:
- 05/20/08 01:05:45 (8 months ago)
- Files:
-
- trunk/core/Version.d (modified) (1 diff)
- trunk/dwtx (added)
- trunk/dwtx/ColumnSorter.d (added)
- trunk/dwtx/StructuredContentProvider.d (added)
- trunk/dwtx/TableLabelProvider.d (added)
- trunk/lab/SqliteSample.d (modified) (1 diff)
- trunk/readme.txt (modified) (1 diff)
- trunk/sys/win32/CodePage.d (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/core/Version.d
r191 r205 18 18 module dwin.core.Version; 19 19 20 public const DWin = 0.3 7f;20 public const DWin = 0.38f; 21 21 22 22 trunk/lab/SqliteSample.d
r190 r205 40 40 41 41 import dwin.database.sqlite.All; 42 pragma(lib,"sqlite3.lib");42 //pragma(lib,"sqlite3.lib"); 43 43 44 44 int SqliteSample() trunk/readme.txt
r194 r205 15 15 http://www.dsource.org/projects/dwin/changeset/192/trunk?old_path=%2F&format=zip 16 16 17 Download SciTE4D 0.1 517 Download SciTE4D 0.16 18 18 http://svn.dsource.org/projects/dwin/downloads/scite4d/scite4d.exe 19 19 trunk/sys/win32/CodePage.d
r171 r205 42 42 { 43 43 static if( is(Buf == char[]) || is(Buf == wchar[]) || is(Buf == dchar[]) || is(Buf == wchar*) ) 44 return CodePage.into( toString(buf), new char[buf.length* 2] ).ptr;44 return CodePage.into( toString(buf), new char[buf.length*3] ).ptr; 45 45 else static assert( false, "Code.Page.toMbsz, wrong parameter" ); 46 46 }
