Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Source file opamStubsTypes.ml
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980(**************************************************************************)(* *)(* Copyright 2018 MetaStack Solutions Ltd. *)(* *)(* All rights reserved. This file is distributed under the terms of the *)(* GNU Lesser General Public License version 2.1, with the special *)(* exception on linking described in the file LICENSE. *)(* *)(**************************************************************************)(** Types for C stubs modules. *)(** CONSOLE_SCREEN_BUFFER_INFO struct
(see https://docs.microsoft.com/en-us/windows/console/console-screen-buffer-info-str)
*)typeconsole_screen_buffer_info={size:int*int;(** Width and height of the screen buffer *)cursorPosition:int*int;(** Current position of the console cursor (caret) *)attributes:int;(** Screen attributes; see https://docs.microsoft.com/en-us/windows/console/console-screen-buffers#_win32_character_attributes *)window:int*int*int*int;(** Coordinates of the upper-left and lower-right corners of the display
window within the screen buffer *)maximumWindowSize:int*int;(** Maximum displayable size of the console for this screen buffer *)}(** CONSOLE_FONT_INFOEX struct
(see https://docs.microsoft.com/en-us/windows/console/console-font-infoex)
*)typeconsole_font_infoex={font:int;(** Index in the system's console font table *)fontSize:int*int;(** Size, in logical units, of the font *)fontFamily:int;(** Font pitch and family (low 8 bits only).
See tmPitchAndFamily in
https://msdn.microsoft.com/library/windows/desktop/dd145132 *)fontWeight:int;(** Font weight. Normal = 400; Bold = 700 *)faceName:string;(** Name of the typeface *)}(** Win32 API handles *)typehandle(** Standard handle constants
(see https://docs.microsoft.com/en-us/windows/console/getstdhandle) *)typestdhandle=STD_INPUT_HANDLE|STD_OUTPUT_HANDLE|STD_ERROR_HANDLE(** Win32 Root Registry Hives (see
https://msdn.microsoft.com/en-us/library/windows/desktop/ms724836.aspx) *)typeregistry_root=|HKEY_CLASSES_ROOT|HKEY_CURRENT_CONFIG|HKEY_CURRENT_USER|HKEY_LOCAL_MACHINE|HKEY_USERS(** Win32 Registry Value Types (see
https://msdn.microsoft.com/en-us/library/windows/desktop/ms724884.aspx *)type_registry_value=|REG_SZ:stringregistry_value(** SHGetFolderPath flags *)typeshGFP_type=|SHGFP_TYPE_CURRENT(** Retrieve the current path *)|SHGFP_TYPE_DEFAULT(** Retrieve the default path *)(** Windows Messages (at least, one of them!) *)type('a,'b,'c)winmessage=|WM_SETTINGCHANGE:(int,string,int)winmessage(** See https://msdn.microsoft.com/en-us/library/windows/desktop/ms725497.aspx *)