mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-22 02:49:28 +02:00
+ added missing NSApp declaration
* fixed NSAllocateMemoryPages declaration git-svn-id: trunk@14473 -
This commit is contained in:
parent
2d2465aac4
commit
87849e1fc6
@ -89,6 +89,7 @@ procedure NSUnregisterServicesProvider(namePointer: NSString); cdecl; external n
|
|||||||
{ External symbols }
|
{ External symbols }
|
||||||
var
|
var
|
||||||
NSAppKitVersionNumber: double; external name '_NSAppKitVersionNumber';
|
NSAppKitVersionNumber: double; external name '_NSAppKitVersionNumber';
|
||||||
|
NSApp: id; external name '_NSApp';
|
||||||
|
|
||||||
{ External string constants }
|
{ External string constants }
|
||||||
var
|
var
|
||||||
|
@ -48,7 +48,7 @@ function NSPageSize: NSUInteger; cdecl; external name 'NSPageSize';
|
|||||||
function NSLogPageSize: NSUInteger; cdecl; external name 'NSLogPageSize';
|
function NSLogPageSize: NSUInteger; cdecl; external name 'NSLogPageSize';
|
||||||
function NSRoundUpToMultipleOfPageSize(bytes: NSUInteger): NSUInteger; cdecl; external name 'NSRoundUpToMultipleOfPageSize';
|
function NSRoundUpToMultipleOfPageSize(bytes: NSUInteger): NSUInteger; cdecl; external name 'NSRoundUpToMultipleOfPageSize';
|
||||||
function NSRoundDownToMultipleOfPageSize(bytes: NSUInteger): NSUInteger; cdecl; external name 'NSRoundDownToMultipleOfPageSize';
|
function NSRoundDownToMultipleOfPageSize(bytes: NSUInteger): NSUInteger; cdecl; external name 'NSRoundDownToMultipleOfPageSize';
|
||||||
procedure NSAllocateMemoryPages(bytes: NSUInteger); cdecl; external name 'NSAllocateMemoryPages';
|
function NSAllocateMemoryPages(bytes: NSUInteger): pointer; cdecl; external name 'NSAllocateMemoryPages';
|
||||||
procedure NSDeallocateMemoryPages(ptrPointer: Pointer; bytes: NSUInteger); cdecl; external name 'NSDeallocateMemoryPages';
|
procedure NSDeallocateMemoryPages(ptrPointer: Pointer; bytes: NSUInteger); cdecl; external name 'NSDeallocateMemoryPages';
|
||||||
procedure NSCopyMemoryPages(sourcePointer: Pointer; destPointer: Pointer; bytes: NSUInteger); cdecl; external name 'NSCopyMemoryPages';
|
procedure NSCopyMemoryPages(sourcePointer: Pointer; destPointer: Pointer; bytes: NSUInteger); cdecl; external name 'NSCopyMemoryPages';
|
||||||
function NSRealMemoryAvailable: NSUInteger; cdecl; external name 'NSRealMemoryAvailable';
|
function NSRealMemoryAvailable: NSUInteger; cdecl; external name 'NSRealMemoryAvailable';
|
||||||
|
Loading…
Reference in New Issue
Block a user