mirror of
https://github.com/blupi-games/planetblupi
synced 2024-12-30 10:15:36 +01:00
18 lines
305 B
C++
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);
|