Is there a definition of the structure used by the fonts and the font convert utility
Mike
July 28, 2025, 4:09am
3
I thought maybe there might be some code in .NETMF which had to do with tiny fonts. So, I went to Github. A few minutes searching I found the following…
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Copyright (c) Microsoft Corporation. All rights reserved.
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include <time.h>
#pragma comment(lib, "Comdlg32")
#include <Commdlg.h>
////////////////////////////////////////////////////////////////////////////////////////////////////
struct Settings : CLR_RT_ParseOptions
{
CLR_RT_SymbolToAddressMap m_symdef;
CLR_RT_AddressToSymbolMap m_symdef_Inverse;
LPCWSTR m_szEntryPoint;
This file has been truncated. show original
I glanced at the code, and there might be some format information.
1 Like