1
0
mirror of https://github.com/blupi-games/planetblupi synced 2024-12-30 10:15:36 +01:00
planetblupi/src/misc.h
Mathieu Schroeter 01c8b5a042 Cosmetic: change coding style with
astyle src/*.{cpp,h} -s4 -Y -m0 -p -xg -xd -H -k3 -W3 -y -xb -xj -O -c -xy -xC80 -U
2017-02-12 13:14:22 +01:00

18 lines
305 B
C++

// misc.h
//
#pragma once
#include <string>
#include "blupi.h"
extern void OutputDebug (const char *pMessage);
extern POINT ConvLongToPos (LPARAM lParam);
extern void InitRandom();
extern Sint32 Random (Sint32 min, Sint32 max);
std::string GetBaseDir();
extern void AddUserPath (char *pFilename);