# Trabalhando com Bibliotecas externas

Para utilizar bibliotecas externas, basta utilizar a palavra-chave <mark style="color:blue;">`Processe`</mark>, seguido do nome da biblioteca (entre aspas duplas), juntamente com o nome da função (case-sensitive, entre aspas duplas). Caso seja necessário repassar argumentos para a função,  Exemplos:

<mark style="color:blue;">`Processe`</mark>` ``"user32.dll" "CloseClipboard".`

Caso seja necessário repassar argumentos para a função, utilize a palavra-chave <mark style="color:green;">**com**</mark>.

<mark style="color:blue;">`Processe`</mark>`"user32.dll" "OpenClipboard"`<mark style="color:green;">`com`</mark>`a janela principal do programa.`

Para obter o valor de retorno da função que foi invocada, utilize a palavra-chave <mark style="color:purple;">**retornando**</mark>.

<mark style="color:blue;">`Processe`</mark>`"user32.dll" "GetClipboardData"`<mark style="color:green;">`com`</mark>`o formato de texto`*<mark style="color:purple;">`retornando`</mark>*`um número identificador.`


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://portugues-puro.gitbook.io/documentacao/trabalhando-com-bibliotecas-externas.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
