1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-09-20 05:34:47 +00:00
QB64-PE/internal/c/libqb/include/command.h
Matthew Kilgore 4f4181fbf2 Separate out qbs, command, and error handling
Moves the qbs, command, and error handling APIs into separate .cpp files
in libqb/src/. This makes only minor changes to the actual code beyond
moving the logic, many global variables are left in place to be dealt
with in further changes.

Fixes: #146
2024-02-14 17:21:14 -05:00

12 lines
213 B
C

#pragma once
#include <stdint.h>
#include "qbs.h"
extern qbs *func_command_str;
qbs *func_command(int32_t index, int32_t passed);
int32_t func__commandcount();
void command_initialize(int argc, char **argv);