mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-21 17:28:00 +02:00
Revamp Stdcall
This commit is contained in:
parent
7b4239d08e
commit
ad0dab0d4c
58 changed files with 1398 additions and 1398 deletions
|
@ -10,19 +10,19 @@ namespace IDE
|
|||
{
|
||||
public class SpellChecker : CommandQueueManager
|
||||
{
|
||||
[StdCall, CLink]
|
||||
[CallingConvention(.Stdcall), CLink]
|
||||
static extern void* SpellChecker_Create(char8* langPath);
|
||||
|
||||
[StdCall, CLink]
|
||||
[CallingConvention(.Stdcall), CLink]
|
||||
static extern void SpellChecker_Delete(void* nativeSpellchecker);
|
||||
|
||||
[StdCall, CLink]
|
||||
[CallingConvention(.Stdcall), CLink]
|
||||
static extern bool SpellChecker_IsWord(void* nativeSpellchecker, char8* word);
|
||||
|
||||
[StdCall, CLink]
|
||||
[CallingConvention(.Stdcall), CLink]
|
||||
static extern void SpellChecker_AddWord(void* nativeSpellchecker, char8* word);
|
||||
|
||||
[StdCall, CLink]
|
||||
[CallingConvention(.Stdcall), CLink]
|
||||
static extern char8* SpellChecker_GetSuggestions(void* spellChecker, char8* word);
|
||||
|
||||
void* mNativeSpellChecker;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue