1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
|
我怎么调用AddWindowEx 这个方法
主要是 sprintf(path, "%splaylist1.txt", GetCurrentDir()); 这一句是干嘛的 百度了一圈也没看到答案 有没有c++大神 帮忙看看
黄舟2017-04-17 13:56:23
sprintf can be replaced by C#'s string.Format()
. If you use C#6, you can directly write the template string $""
, and GetCurrentDir should be replaced by Environment.CurrentDirectory
.
1 2 |
|
Is AddWindowEx a custom function?
黄舟2017-04-17 13:56:23
1 2 3 |
|
Then just call the method directly