mirror of
https://github.com/thunderbrewhq/squall.git
synced 2026-02-04 00:49:08 +00:00
chore(build): mark all API functions with calling convention (#69)
This commit is contained in:
parent
dc9f9c1958
commit
4fa6599807
15 changed files with 220 additions and 207 deletions
|
|
@ -1,6 +1,6 @@
|
|||
#include "storm/Unicode.hpp"
|
||||
|
||||
uint32_t SUniSGetUTF8(const uint8_t* strptr, int32_t* chars) {
|
||||
uint32_t STORMAPI SUniSGetUTF8(const uint8_t* strptr, int32_t* chars) {
|
||||
if (chars) {
|
||||
*chars = 0;
|
||||
}
|
||||
|
|
@ -58,7 +58,7 @@ uint32_t SUniSGetUTF8(const uint8_t* strptr, int32_t* chars) {
|
|||
return value;
|
||||
}
|
||||
|
||||
void SUniSPutUTF8(uint32_t c, char* strptr) {
|
||||
void STORMAPI SUniSPutUTF8(uint32_t c, char* strptr) {
|
||||
if (!strptr) {
|
||||
return;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue