mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-22 07:09:29 +02:00
+ few package related declarations added
git-svn-id: trunk@7844 -
This commit is contained in:
parent
f3f4e7a018
commit
0c4e27f706
@ -58,6 +58,21 @@ const
|
||||
ApiSuffix = 'A';
|
||||
{$endif WINCE}
|
||||
|
||||
function OleStrToString(source: PWideChar) : ansistring;inline;
|
||||
procedure OleStrToStrVar(source : PWideChar;var dest : ansistring);inline;
|
||||
function StringToOleStr(const source : ansistring) : PWideChar;inline;
|
||||
function OleStrToString(source: PWideChar) : ansistring;inline;
|
||||
procedure OleStrToStrVar(source : PWideChar;var dest : ansistring);inline;
|
||||
function StringToOleStr(const source : ansistring) : PWideChar;inline;
|
||||
|
||||
{ package stuff }
|
||||
type
|
||||
PLibModule = ^TLibModule;
|
||||
TLibModule = record
|
||||
Next: PLibModule;
|
||||
Instance: THandle;
|
||||
CodeInstance: THandle;
|
||||
DataInstance: THandle;
|
||||
ResInstance: THandle;
|
||||
Reserved: PtrInt;
|
||||
end;
|
||||
|
||||
var
|
||||
LibModuleList: PLibModule = nil;
|
||||
|
Loading…
Reference in New Issue
Block a user