#include <stdarg.h>
#include "windef.h"
#include "winbase.h"
#include "fontsub.h"
#include "wine/debug.h"
Go to the source code of this file.
|
| WINE_DEFAULT_DEBUG_CHANNEL (fontsub) |
|
BOOL WINAPI | DllMain (HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved) |
|
ULONG __cdecl | CreateFontPackage (const unsigned char *src, const ULONG src_len, unsigned char **dest, ULONG *dest_len, ULONG *written, const unsigned short flags, const unsigned short face_index, const unsigned short format, const unsigned short lang, const unsigned short platform, const unsigned short encoding, const unsigned short *keep_list, const unsigned short keep_len, CFP_ALLOCPROC allocproc, CFP_REALLOCPROC reallocproc, CFP_FREEPROC freeproc, void *reserved) |
|
◆ CreateFontPackage()
ULONG __cdecl CreateFontPackage |
( |
const unsigned char * |
src, |
|
|
const ULONG |
src_len, |
|
|
unsigned char ** |
dest, |
|
|
ULONG * |
dest_len, |
|
|
ULONG * |
written, |
|
|
const unsigned short |
flags, |
|
|
const unsigned short |
face_index, |
|
|
const unsigned short |
format, |
|
|
const unsigned short |
lang, |
|
|
const unsigned short |
platform, |
|
|
const unsigned short |
encoding, |
|
|
const unsigned short * |
keep_list, |
|
|
const unsigned short |
keep_len, |
|
|
CFP_ALLOCPROC |
allocproc, |
|
|
CFP_REALLOCPROC |
reallocproc, |
|
|
CFP_FREEPROC |
freeproc, |
|
|
void * |
reserved |
|
) |
| |
Definition at line 43 of file main.c.
48{
49 FIXME(
"(%p %u %p %p %p %#x %u %u %u %u %u %p %u %p %p %p %p): stub\n",
src, src_len,
dest, dest_len,
50 written,
flags, face_index,
format,
lang,
platform,
encoding, keep_list, keep_len, allocproc,
52
55
56 *
dest = allocproc(src_len);
59
61 *dest_len = src_len;
62 *written = src_len;
63
65}
#define memcpy(s1, s2, n)
static const WCHAR lang[]
◆ DllMain()
Definition at line 28 of file main.c.
29{
31
32 switch (fdwReason) {
33 case DLL_WINE_PREATTACH:
37 break;
38 }
39
41}
#define DLL_PROCESS_ATTACH
BOOL WINAPI DisableThreadLibraryCalls(IN HMODULE hLibModule)
static IN DWORD IN LPVOID lpvReserved
◆ WINE_DEFAULT_DEBUG_CHANNEL()
WINE_DEFAULT_DEBUG_CHANNEL |
( |
fontsub |
| ) |
|