摘要: / testHtmlayout.cpp : 定义应用程序的入口点。//#include "stdafx.h"#include "testHtmlayout.h"#include "include/htmlayout.h"#pragma comment(lib,"lib/HTMLayout.lib")#define MAX_LOADSTRING 100// 全局变量:HINSTANCE hInst; // 当前实例TCHAR szTitle[MAX_LOADSTRING]; // 标题栏文本TCHAR szWindo 阅读全文
posted @ 2013-10-25 14:57 svolcano 阅读(764) 评论(0) 推荐(0) 编辑
摘要: #include #include #include #pragma comment(lib,"shlwapi.lib") int myRemoveDirectory(char *szPath){ if(!PathIsDirectory(szPath)) { return GetLastError(); } BOOL bRes = SetCurrentDirectory(szPath); if(!bRes) { return GetLastError(); } char * buf =(char *)malloc(M... 阅读全文
posted @ 2013-10-25 13:46 svolcano 阅读(606) 评论(0) 推荐(0) 编辑