Skip to content

Commit

Permalink
Documentation update
Browse files Browse the repository at this point in the history
  • Loading branch information
SomeCrazyGuy committed Jul 8, 2024
1 parent 09ac941 commit 64271ba
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
18 changes: 12 additions & 6 deletions betterapi.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,10 @@
// 18) C Library API
// 19) Game Console API
// 20) Wrapped Windows API
// 21) File I/O API
// 22) BetterConsole API
// 23) SFSE Minimal Interface
// 21) CSV file API
// 22) String Parser API
// 23) BetterConsole API
// 24) SFSE Minimal Interface



Expand Down Expand Up @@ -1080,7 +1081,9 @@ struct windows_api_t {
#endif


// this is the api for parsing csv files
///////////////////////////////////////////////////////////////////////////////
// 21) CSV file API
///////////////////////////////////////////////////////////////////////////////
struct csv_api_t {
// Load a csv file
// returns NULL on error
Expand Down Expand Up @@ -1109,6 +1112,9 @@ struct csv_api_t {
};


///////////////////////////////////////////////////////////////////////////////
// 22) String Parser API
///////////////////////////////////////////////////////////////////////////////
struct parse_api_t {
// parse a utf-8 string as a 64-bit unsigned integer
// returns false on parse error
Expand Down Expand Up @@ -1192,7 +1198,7 @@ struct parse_api_t {


///////////////////////////////////////////////////////////////////////////////
// 22) BetterConsole API
// 23) BetterConsole API
///////////////////////////////////////////////////////////////////////////////

// This is all the above structs wrapped up in one place
Expand Down Expand Up @@ -1233,7 +1239,7 @@ struct service_locator_t {


///////////////////////////////////////////////////////////////////////////////
// 23) SFSE Minimal Interface
// 24) SFSE Minimal Interface
///////////////////////////////////////////////////////////////////////////////

// For people that want to port Cheat Engine or ASI mods to sfse without including
Expand Down
2 changes: 0 additions & 2 deletions src/parser.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,4 @@

#include "main.h"



extern const struct parse_api_t* GetParserAPI();

0 comments on commit 64271ba

Please sign in to comment.