comparison d2/qtd/Core.d @ 360:49d0a43433e7

typo in comments
author maxter <spambox@d-coding.com>
date Thu, 03 Jun 2010 10:12:29 +0300
parents 2013af5d0627
children a032df77b6ab
comparison
equal deleted inserted replaced
359:2013af5d0627 360:49d0a43433e7
21 qtdMoLock = cast(immutable)new Object; 21 qtdMoLock = cast(immutable)new Object;
22 qtd_initCore(); 22 qtd_initCore();
23 } 23 }
24 24
25 /** 25 /**
26 Defines a function that can be called from QtD C++ libraries, 26 Defines a function that can be called from QtD C++ libraries.
27 which will register the function with the DLL at program startup. 27 The function will be automatically
28 registered with the DLL at program startup.
28 */ 29 */
29 string qtdExport(string retType, string name, string args, string funcBody) 30 string qtdExport(string retType, string name, string args, string funcBody)
30 { 31 {
31 string ret; 32 string ret;
32 version (cpp_shared) // TODO: cpp_shared implies Windows, which is not correct 33 version (cpp_shared) // TODO: cpp_shared implies Windows, which is not correct