You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
448 B
19 lines
448 B
//
|
|
// Local private header file
|
|
|
|
#include "deskhtm.h"
|
|
#include <regstr.h>
|
|
#include "resource.h"
|
|
#include "shdocvw.h"
|
|
|
|
#define MAX_URL_STRING INTERNET_MAX_URL_LENGTH
|
|
|
|
|
|
// Use our private version of the OLE task allocator so we don't pull
|
|
// in all of OLE32 just to do LocalAlloc and LocalFree!
|
|
|
|
#ifndef DEBUG
|
|
#define CoTaskMemFree SHFree
|
|
#define CoTaskMemAlloc SHAlloc
|
|
#define CoTaskMemRealloc SHRealloc
|
|
#endif
|